Files
flask_blog/templates/components/post_renderer.html
2026-03-14 19:46:41 +01:00

4 lines
174 B
HTML

{% macro render_post(post) %}
<article class="blog-content">{{ post.content | safe }}</article>
{% if post.template %} {% include post.template %} {% endif %} {% endmacro %}