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

6 lines
193 B
HTML

{% extends "layout.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
{{ render_blog_post(this) }}
{% endblock %}