You've already forked uutils.github.io
mirror of
https://github.com/uutils/uutils.github.io.git
synced 2026-06-10 16:12:28 -07:00
16 lines
416 B
HTML
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 -%}
|