blog/templates/blog.html

13 lines
314 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 %}
{{ blog::postlisting(posts=section.pages) }}
{% endblock %}