10 lines
231 B
HTML
10 lines
231 B
HTML
{% macro render_post(post) %}
|
|
<article class="blog-content">
|
|
{{ post.content | safe }}{% if post.template %} {% include post.template %} {%
|
|
endif %}
|
|
</article>
|
|
|
|
<hr class="post-divider post-divider-expanded" />
|
|
|
|
{% endmacro %}
|