rophako/rophako/modules/blog/templates/blog/index.inc.html

14 lines
285 B
HTML
Raw Normal View History

{% from "blog/entry.inc.html" import blog_entry %}
{% include "blog/nav-links.inc.html" %}
{% if count == 0 %}
2015-08-12 00:39:16 +00:00
There are no blog posts yet.
{% else %}
2015-08-12 00:39:16 +00:00
{% for post in posts %}
{{ blog_entry(post, from="index") }}
{% endfor %}
{% endif %}
2015-07-20 21:09:14 +00:00
{% include "blog/nav-links.inc.html" %}