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