staticrustator/templates/index.html

25 lines
359 B
HTML
Raw Permalink Normal View History

2024-08-29 15:04:04 +00:00
{% 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 %}