blog/templates/blog.html
2018-09-22 16:14:11 -05:00

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