Upload Testproject

This commit is contained in:
maste9
2022-02-10 19:37:52 +01:00
parent 5bc18cf773
commit 4dafd4cbfc
16 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{% extends "layout.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% from "macros/pagination.html" import render_pagination %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
{% for child in this.pagination.items %}
{{ render_blog_post(child, from_index=true) }}
{% endfor %}
{{ render_pagination(this.pagination) }}
{% endblock %}