blob: f2ccc74ae1015e999977fadb2b240c8037abaf7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block html_title %}{{ section.title }} | {{ config.title }}{% endblock html_title %}
{% block content %}
<div class="alt-links">
[<a href="{{ get_url(path="atom.xml", trailing_slash=false) }}">feed</a>]
[<a href="{{ get_url(path="categories") }}">cat</a>]
[<a href="{{ get_url(path="tags") }}">tag</a>]
</div>
<h1 class="title">
Posts
</h1>
{{ posts::display(pages=section.pages) }}
{% endblock content %}
|