18 lines
463 B
HTML
18 lines
463 B
HTML
{% extends "layout.html" %}
|
|
{% import "macros/blog.html" as blog %}
|
|
{% import "macros/layout.html" as layout %}
|
|
|
|
{% block title %}
|
|
{% if section.title %}{{ section.title }} - {% endif %}
|
|
{{ config.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
|
|
{{ blog::sectionlisting(section=section) }}
|
|
|
|
<p style="text-align: center;">
|
|
<small><a href="/rss.xml">click here for RSS feed</a></small>
|
|
</p>
|
|
{% endblock %}
|