10 lines
220 B
HTML
10 lines
220 B
HTML
{% if logged_in == true %}
|
|
<p><a class="button" href="{{ depth }}p/new">New post</a></p>
|
|
{% endif %}
|
|
|
|
{% for post_id in posts %}
|
|
{% set post_id = post_id %}
|
|
{{ include('meta_post_card_mini.twig.html') }}
|
|
{% endfor %}
|
|
|