Files
flask_blog/templates/components/post_renderer.html
2026-03-24 21:27:59 +01:00

13 lines
514 B
HTML

{% macro render_post(post) %}
<article class="blog-content">{{ post.content | safe }}</article>
{% if post.template %} {% include post.template %} {% endif %} {% endmacro %} {%
macro render_test(post) %}
<article class="blog-content">
{% for block in post.content %} {% if block.type == "image" %} {% include
"components/image.html" with src=url_for('content_image_files',
filename=block.src) %} {% elif block.type == "text" %}
<p>{{ block.value }}</p>
{% endif %} {% endfor %}
</article>
{% endmacro %}