blob: 2c0b4cf3dc263ab4b5e55974e3cbd8bce7233e94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block title %}lemon's site{% endblock title %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
Browse by <a href="/tags">tags</a>
<ul>
{% for page in section.pages %}
<li><span class="date">{{ page.date | date(format="%Y-%m-%d") }}</span> <a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}
|