about summary refs log tree commit diff
path: root/templates/section.html
blob: e6b66943b14627789d60f4e9bd640eff0dbe169b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% 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 %}