lykin_tutorial/part_6_ui_layout/templates/post_list.html.tera

11 lines
144 B
Plaintext

<div class="posts">
{% if posts %}
<ul>
{% for post in posts -%}
Subject placeholder
{%- endfor %}
</ul>
{% endif %}
</div>