4 lines
174 B
HTML
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 %}
|