blob: 7130c84bd717b2dddfb816c3ddd92ba5f6d20157 (
plain) (
tree)
|
|
{% extends "orphan.html" %}
{% block title %}{{ section.title }} - {{ config.title }}{% endblock title %}
{% block content %}
<h1>{{ section.title }}</h1>
<ul>
{% for post in section.pages %}
<li>
<a href="{{ post.permalink }}">{{ post.title }}</a>
<br>
<small>{{ post.date | date(format="%d %h %Y") }}</small>
</li>
{% endfor %}
</ul>
{% endblock content %}
|