mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 13:21:35 +01:00
25 lines
713 B
HTML
25 lines
713 B
HTML
{% extends "index.html" %}<!---->
|
|
{% block main %}<!---->
|
|
|
|
<h1 class="mb-16">{{ page.title }}</h1>
|
|
|
|
{% set section = get_section(path=page.extra.section) %}<!---->
|
|
|
|
{% for year, posts in section.pages | group_by(attribute="year") %}
|
|
<h2>{{ year }} <sup class="opacity-60">{{ posts | length }}</sup></h2>
|
|
|
|
<div class="not-prose pl-6">
|
|
<ul>
|
|
{% for post in posts %}
|
|
<li>
|
|
<div class="my-2 flex items-center justify-between">
|
|
<a class="secondary-link" href="{{ post.permalink }}">{{ post.title }}</a>
|
|
<time class="font-mono text-sm opacity-60">{{ post.date | date(format="%m-%d") }}</time>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
{% endfor %}<!---->
|
|
{% endblock main %}
|