leilukin-site/src/changelogs/changelogs.njk

35 lines
729 B
Plaintext
Raw Normal View History

2024-04-16 11:30:31 +00:00
---
layout: main/changelogs
title: Changelogs
pageTitle: Website Changelogs
desc: Changelogs of my website.
2024-04-16 11:30:31 +00:00
metadata:
type: article
pagination:
data: collections["changelogs"]
size: 20
alias: changelogs
reverse: true
permalink: "/{{ page.fileSlug }}{% if pagination.pageNumber > 0 %}/page/{{ pagination.pageNumber + 1 }}{% endif %}/"
2024-04-16 11:30:31 +00:00
---
<article>
2024-04-18 02:33:09 +00:00
<h2>Latest Changelogs</h2>
{% for log in changelogs %}
2024-04-18 02:33:09 +00:00
<h3 class="date-style">{{ log.data.date | niceDate }}</h3>
2024-04-16 11:30:31 +00:00
{{ log.templateContent | safe }}
{%- endfor %}
</article>
{% include "global/pagination-oldnew.njk" %}
2024-04-18 02:33:09 +00:00
<style>
h2 + h3 {
margin-top: 1.5em;
}
h3 + ul {
margin-bottom: 3em;
}
</style>