mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-03-14 18:07:14 +00:00
16 lines
466 B
Plaintext
16 lines
466 B
Plaintext
<article>
|
|
{% for log in changelogList | reverse %}
|
|
<div class="heading-wrapper h2">
|
|
<h2 id="{{ log.fileSlug }}">{{ log.date | niceDate }}</h2>
|
|
<a class="heading-anchor" href="#{{ log.fileSlug }}" aria-labelledby="{{ log.fileSlug }}"><span hidden="">#</span></a>
|
|
</div>
|
|
{{ log.templateContent | safe }}
|
|
{%- endfor %}
|
|
</article>
|
|
|
|
<style>
|
|
.heading-wrapper + ul {
|
|
margin: 0.3em 0 3em 0;
|
|
}
|
|
</style>
|