chaoswest.tv/templates/blog.html

10 lines
289 B
HTML
Raw Normal View History

2022-01-20 23:51:09 +01:00
{% extends "layout.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
2024-01-21 23:22:19 +01:00
{{ this.body }}
2022-01-20 23:51:09 +01:00
{% for child in this.pagination.items %}
{{ render_blog_post(child, from_index=true) }}
{% endfor %}
2024-01-21 21:25:29 +01:00
{% endblock %}