flask-htmx-board1/templates/i-posts.html
Simple_Not 6094f277b5
All checks were successful
continuous-integration/drone/push Build is passing
check posts
2023-07-13 19:50:45 +10:00

7 lines
156 B
HTML

{% if posts | length > 0 %}
{% for post in posts %}
<div class="posto">
{{ post.texto }}
</div>
{% endfor %}
{% endif %}