lykin_tutorial/part_6_update_ui/templates/post_list.html.tera

11 lines
144 B
Plaintext
Raw Normal View History

2022-09-07 08:44:11 +00:00
<div class="posts">
{% if posts %}
<ul>
{% for post in posts -%}
2022-09-07 08:56:04 +00:00
Subject placeholder
2022-09-07 08:44:11 +00:00
{%- endfor %}
</ul>
{% endif %}
</div>