{% extends "sphene/sphblog/base.html" %} {% load sph_extras %} {% load sphblog_extras %} {% load i18n %} {% block subtitle %} {% if tag %} {{ tag.name }} {% else %} {# {{ block.super }} #} {% trans "Blog" %} {% endif %} {% endblock %} {% block content %} {% if allowpostcategories %}
{% csrf_token %}
{% endif %} {% if category %}

{{ category.name }}

{% if user.is_authenticated %} {% include "sphene/sphboard/_category_monitor.html" %} {% else %} {% endif %}

{% endif %} {% if archive_year %} {% if archive_month %}

Archive for {{ archive_month|humanize_month }}, {{ archive_year }}

{% else %}

Archive for {{ archive_year }}

{% endif %} {% endif %} {% if tag %}

{% trans "Tag" %}: {{ tag.name }} / {% trans "Back" %}

{% endif %} {% if not threads.object_list %}

{% trans "There are no blog posts yet." %}

{% endif %} {% for thread in threads.object_list %} {% sphblog_showblogpost thread %} {% endfor %} {# Pagination #}

{% if threads.has_previous %} {% if not archive_year %} Previous | {% else %} {% if archive_month %} Previous | {% else %} Previous | {% endif %} {% endif %} {% endif %} Page {{ threads.number }} {% if threads.has_next %} {% if not archive_year %} | Next {% else %} {% if archive_month %} | Next {% else %} | Next {% endif %} {% endif %} {% endif %}

{# Pagination end #} {% if all_tags %}
{% trans "All used Tags:" %}
{% endif %}
{% trans "Archive" %} {% show_archive categories %}

{% trans "RSS Feed" %}

{% endblock %}