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