PodcastLektor/Podcast/templates/blog-post.html

7 lines
193 B
HTML
Raw Normal View History

2022-02-10 19:37:52 +01:00
{% extends "layout.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
{{ render_blog_post(this) }}
{% endblock %}