24 lines
No EOL
531 B
Text
24 lines
No EOL
531 B
Text
---
|
|
layout: base.njk
|
|
title: Blog
|
|
---
|
|
|
|
<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 | dateFormat }}">{{ post.data.createdAt | dateFormat }}</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 %} |