2018-08-09 06:53:47 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% import "macros/blog.html" as blog %}
|
2018-09-22 21:14:11 +00:00
|
|
|
{% import "macros/layout.html" as layout %}
|
2018-08-09 06:53:47 +00:00
|
|
|
|
2018-08-29 22:36:07 +00:00
|
|
|
{% block title %}
|
|
|
|
{% if section.title %}{{ section.title }} - {% endif %}
|
|
|
|
{{ config.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-08-09 06:53:47 +00:00
|
|
|
{% block content %}
|
|
|
|
{{ blog::postlisting(posts=section.pages) }}
|
2019-03-28 01:04:55 +00:00
|
|
|
|
|
|
|
<p style="text-align: center;">
|
|
|
|
<small><a href="/rss.xml">click here for RSS feed</a></small>
|
|
|
|
</p>
|
2018-08-09 06:53:47 +00:00
|
|
|
{% endblock %}
|