Files
flask_blog/templates/posts/post_2.html
2026-03-24 21:33:10 +01:00

6 lines
243 B
HTML

{% 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 %}