podcast-webseite/templates/blog.html
L3D b9bbd07e6e
Initial commit
Initial commit with lektor:
```bash
lektor quickstart
```
2019-05-25 20:06:05 +02:00

11 lines
376 B
HTML

{% 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 %}