staticrustator/templates/index.html
2024-08-29 11:04:04 -04:00

24 lines
359 B
HTML

{% extends "layout.html" %}
{% block quote %}
{{ random_quote }}
{% endblock %}
{% block content %}
<h1 style="margin-top:0.5em"> Posts </h1>
<div class="table">
{% for entry in index_post_entries %}
<div>
<time> {{ entry.date }} </time>
<a href="{{ entry.path }}"> {{ entry.title }}</a>
</div>
{% endfor %}
</div>
{% endblock %}