chaoswest.tv/templates/blog.html

14 lines
378 B
HTML
Raw Normal View History

2022-01-20 23:51:09 +01:00
{% extends "layout.html" %}
2022-05-01 14:51:42 +02:00
2022-01-20 23:51:09 +01:00
{% from "macros/blog.html" import render_blog_post %}
{% from "macros/pagination.html" import render_pagination %}
2022-05-01 14:51:42 +02:00
2022-01-20 23:51:09 +01:00
{% block title %}{{ this.title }}{% endblock %}
2022-05-01 14:51:42 +02:00
2022-01-20 23:51:09 +01:00
{% block body %}
{% for child in this.pagination.items %}
{{ render_blog_post(child, from_index=true) }}
{% endfor %}
{{ render_pagination(this.pagination) }}
2022-05-01 14:51:42 +02:00
{% endblock %}