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.
27 lines
804 B
27 lines
804 B
8 years ago
|
{# Older/Newer links #}
|
||
|
|
||
|
{% if can_older or can_newer %}
|
||
|
<div class="right">
|
||
|
[
|
||
8 years ago
|
<a href="{{ url_for('blog.rss') }}">RSS Feed</a> |
|
||
8 years ago
|
{% if can_earlier %}
|
||
|
{% if category %}
|
||
|
<a href="{{ url_for('blog.category', category=category) }}?skip={{ earlier }}">< Newer</a>
|
||
|
{% else %}
|
||
|
<a href="{{ url_for('blog.index') }}?skip={{ earlier }}">< Newer</a>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if can_older %} | {% endif %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% if can_older %}
|
||
|
{% if category %}
|
||
|
<a href="{{ url_for('blog.category', category=category) }}?skip={{ older }}">Older ></a>
|
||
|
{% else %}
|
||
|
<a href="{{ url_for('blog.index') }}?skip={{ older }}">Older ></a>
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
|
||
|
]
|
||
|
</div>
|
||
|
{% endif %}
|