mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-03-12 20:27:14 +00:00
33 lines
705 B
Plaintext
33 lines
705 B
Plaintext
---
|
|
layout: main/changelogs
|
|
title: Changelogs
|
|
pageTitle: Website Changelogs
|
|
desc: Changelogs of my website.
|
|
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 %}/"
|
|
eleventyNavigation:
|
|
key: Changelogs
|
|
order: 9
|
|
---
|
|
|
|
<h2>Latest Changelogs</h2>
|
|
{% for log in changelogs %}
|
|
<h3 class="date-style">{{ log.data.date | formatDate }}</h3>
|
|
{{ log.templateContent | safe }}
|
|
{%- endfor %}
|
|
|
|
{% include "global/pagination-oldnew.njk" %}
|
|
|
|
<style>
|
|
* + h2,
|
|
* + h3 {
|
|
margin-top: 1.5em;
|
|
}
|
|
</style>
|