11 lines
293 B
HTML
11 lines
293 B
HTML
{% if posts %}
|
|
{% for post in posts %}
|
|
{% include "templates/includes/inline_post.html" %}
|
|
{% endfor %}
|
|
{% else %}
|
|
{% if limit_start %}
|
|
<div class="no-posts text-muted">No more posts.</div>
|
|
{% else %}
|
|
<div class="no-posts text-muted">Nothing posted yet.</div>
|
|
{% endif %}
|
|
{% endif %}
|