blog/templates/blog.html

19 lines
463 B
HTML
Raw Normal View History

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 %}
2020-05-05 04:38:36 +00:00
{{ section.content | safe }}
2020-02-12 05:46:13 +00:00
{{ blog::sectionlisting(section=section) }}
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 %}