summaryrefslogtreecommitdiff
path: root/mod/web/blog/templates/blog.html
blob: 6c92a075f4e9154ab370c022f41401bf8334f280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base.html" %}

{% block content %}

<head>
  <title>4kb.net</title>
</head>

<h2>{{ section.title }}</h2>

{{ section.content | safe }}

<ul>
  {% for page in section.pages %}
    <li>
    <span>[{{ page.date }}]</span>
    <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
    </li>
  {% endfor %}
</ul>

{% endblock content %}