20 lines
604 B
HTML
20 lines
604 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block main -%}
|
||
|
<article>
|
||
|
{% if page.title -%}
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
{% endif -%}
|
||
|
<ul>
|
||
|
{% for post in posts -%}
|
||
|
<li><a href="{{post.absolute_path | safe}}">{% if post.date -%}
|
||
|
<time datetime="{{ post.date }}">{{ post.date | date(format="%Y-%m-%d") }}</time> - {{ post.title -}}
|
||
|
{% else -%}
|
||
|
{{ post.title -}}
|
||
|
{% endif -%}
|
||
|
</a></li>
|
||
|
{% endfor -%}
|
||
|
</ul>
|
||
|
</article>
|
||
|
{% endblock main -%}
|