A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
299 B
13 lines
299 B
{% from "blog/entry.inc.html" import blog_entry %}
|
|
|
|
{% include "blog/nav-links.inc.html" %}
|
|
|
|
{% if count == 0 %}
|
|
There are no blog posts yet.
|
|
{% else %}
|
|
{% for post in posts %}
|
|
{{ blog_entry(post, from="index") }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% include "blog/nav-links.inc.html" %}
|