flask-htmx-board1/templates/i-posts.html

7 lines
156 B
HTML
Raw Normal View History

2023-07-13 19:50:45 +10:00
{% if posts | length > 0 %}
{% for post in posts %}
<div class="posto">
{{ post.texto }}
</div>
{% endfor %}
{% endif %}