25 lines
359 B
HTML
25 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 %}
|