blog/templates/blog.html

13 lines
314 B
HTML
Raw Normal View History

2018-08-08 23:53:47 -07:00
{% extends "layout.html" %}
{% import "macros/blog.html" as blog %}
2018-09-22 16:14:11 -05:00
{% import "macros/layout.html" as layout %}
2018-08-08 23:53:47 -07:00
2018-08-29 17:36:07 -05:00
{% block title %}
{% if section.title %}{{ section.title }} - {% endif %}
{{ config.title }}
{% endblock %}
2018-08-08 23:53:47 -07:00
{% block content %}
{{ blog::postlisting(posts=section.pages) }}
{% endblock %}