{% extends "base.html" %} {% load i18n mezzanine_tags mezawiki_tags keyword_tags disqus_tags %} {% block meta_title %}{% if page %}{{ page.richtextpage.title }}{% else %}{% trans "Wiki" %}{% endif %}{% endblock %} {% block meta_keywords %}{% metablock %} {% keywords_for page as keywords %} {% for keyword in keywords %} {% if not forloop.first %}, {% endif %} {{ keyword }} {% endfor %} {% endmetablock %}{% endblock %} {% block meta_description %}{% metablock %} {{ page.description }} {% endmetablock %}{% endblock %} {% block title %} {% trans "Page list" %} {% endblock %} {% block breadcrumb_menu %} {{ block.super }} {% if tag or category or year or month or author %}
{% if tag %} {% trans "Viewing pages tagged" %} {{ tag }} {% else %}{% if category %} {% trans "Viewing pages for the category" %} {{ category }} {% else %}{% if year or month %} {% trans "Viewing pages from" %} {% if month %}{{ month }}, {% endif %} {{ year }} {% else %}{% if author %} {% trans "Viewing pages by" %} {{ author.get_full_name|default:author.username }} {% endif %}{% endif %}{% endif %}{% endif %}
{% endif %}