blob: 0425f26b0bd780284c32159b3b8546f21f23f076 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %} {%- block content -%} {% if section.content %} {{
section.content | safe }} {% endif %}
<hr />
{%- for post in section.pages -%}
<section>
<ul class="post-list">
<li>
<a href="{{- post.path|safe -}}">{{- post.title -}}</a>
<span class="post-date">{{ post.date | date(format="%d %h %Y")}}</span>
</li>
</ul>
</section>
{%- endfor -%} {%- endblock content -%}
|