Files
uutils.github.io/templates/section.html
T
2024-01-31 22:07:07 +01:00

16 lines
416 B
HTML

{%- extends "base.html" -%}
{%- block main -%}
<div class="title">{{ section.title }}</div>
{{ section.content | safe }}
{% for post in section.pages %}
<a class="post-thingy" href="{{ post.permalink }}">
<h1>{{ post.title }}</h1>
<div>{{ post.date | date(format="%b %e, %Y") }}</div>
</a>
{% else %}
No posts yet.
{% endfor %}
{%- endblock main -%}