volpe/index.njk

29 lines
No EOL
769 B
Text

---
layout: base.njk
title: Blog
description: Welcome to my website! I write about tech, politics, food, and hobby projects. Stay a while, make some friends, learn something, and help your neighbors.
---
<section class="intro">
<p>{{ description }}</p>
</section>
<h1>Blog Posts</h1>
<ul class="post-list">
{% for post in collections.posts %}
<li>
<a href="{{ post.url }}" class="post-card">
<h2>{{ post.data.title }}</h2>
<time datetime="{{ post.data.createdAt | dateTimeFormat }}">{{ post.data.createdAt | dateTimeFormat }}</time>
{% if post.data.description %}
<p>{{ post.data.description }}</p>
{% endif %}
</a>
</li>
{% endfor %}
</ul>
{% if collections.posts.length == 0 %}
<p>No blog posts yet.</p>
{% endif %}