19 lines
455 B
HTML
19 lines
455 B
HTML
{% extends "base.html" %} {% block content %}
|
|
|
|
{% if metadata.show_title %}
|
|
{% include "title.html" %}
|
|
{% endif %}
|
|
|
|
<article>{{ content | safe }}</article>
|
|
|
|
{% if post_list %}
|
|
<ul>
|
|
{% for item in post_list %}
|
|
<li>
|
|
<time class="post-list-date" datetime="{{ item.metadata.date | safe }}"
|
|
>{{ item.metadata.date | safe}}</time>: <a href="/{{ item.url }}"
|
|
>{{ item.metadata.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %} {% endblock %}
|