about summary refs log tree commit diff stats
path: root/themes/xmin/templates/section.html
diff options
context:
space:
mode:
authorAlan Pearce2023-04-19 14:06:56 +0200
committerAlan Pearce2023-04-19 14:06:56 +0200
commitcea3e75c68070d180311f6dea56c192a7f90c23d (patch)
tree4dcf4b8381f40a213a428831ac7d0beca643c261 /themes/xmin/templates/section.html
parent38b2563500426ad8349d83441be89708b7fac796 (diff)
downloadwebsite-cea3e75c68070d180311f6dea56c192a7f90c23d.tar.xz
website-cea3e75c68070d180311f6dea56c192a7f90c23d.zip
Switch to bear blog theme
Diffstat (limited to 'themes/xmin/templates/section.html')
-rw-r--r--themes/xmin/templates/section.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/themes/xmin/templates/section.html b/themes/xmin/templates/section.html deleted file mode 100644 index e61566f..0000000 --- a/themes/xmin/templates/section.html +++ /dev/null
@@ -1,18 +0,0 @@
1{% extends "base.html" %}
2
3{% block main %}
4<main>
5 <h1>{{ section.title }}</h1>
6 {{ section.content }}
7 <section>
8 <ul>
9 {% for page in section.pages %}
10 <li class="h-entry">
11 <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format="%F") }}</time>
12 <a class="u-url p-name" href="{{ page.path | safe }}">{{ page.title }}</a>
13 </li>
14 {% endfor %}
15 </ul>
16 </section>
17</main>
18{% endblock %}