leilukin-site/src/blog/posts.njk

43 lines
1000 B
Plaintext
Raw Normal View History

2024-04-15 17:39:56 +00:00
---
pagination:
data: collections.posts
size: 10
alias: postList
reverse: true
title: Blog Archive
layout: main/content
tags: blog pages
blogNav: Archive
2024-04-16 09:09:38 +00:00
---
<ul class="blog__postlist">
{% for post in postList %}
<li>
<h2 class="blog__title">
<a href="{{ post.url }}">
{% if post.data.title %}{{ post.data.articleTitle }}
{% else %}
<code>{{ post.url }}</code>
{% endif %}
</a>
</h2>
<time>{{ post.date | niceDate }}</time>
<p>{{ post.data.desc }}</p>
</li>
{% endfor %}
</ul>
<p class="center-text">
{% if pagination.href.previous %}
<a href=" {{ pagination.href.previous }}">Previous</a>
{% else %}
Previous
{% endif %}
/
{% if pagination.href.next %}
<a href=" {{ pagination.href.next }}">Next</a>
{% else %}
Next
{% endif %}
</p>