6 lines
243 B
HTML
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 %}
|