12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {% extends "misago/base.html" %}
- {% load i18n misago_absoluteurl misago_shorthands %}
- {% block title %}
- {% if THREADS_ON_INDEX %}
- {% trans "Categories" %} | {{ block.super }}
- {% else %}
- {{ settings.index_title|default:settings.forum_name }}
- {% endif %}
- {% endblock title %}
- {% block meta-description %}
- {% if not THREADS_ON_INDEX and settings.index_meta_description %}
- {{ settings.index_meta_description }}
- {% else %}
- {% blocktrans trimmed count categories=categories|length with forum_name=settings.forum_name %}
- There is {{ categories }} main category currenty available on the {{ forum_name }}.
- {% plural %}
- There are {{ categories }} main categories currenty available on the {{ forum_name }}.
- {% endblocktrans %}
- {% endif %}
- {% endblock meta-description %}
- {% block og-title %}
- {% if THREADS_ON_INDEX %}
- {% trans "Categories" %}
- {% else %}
- {{ settings.index_title|default:settings.forum_name }}
- {% endif %}
- {% endblock og-title %}
- {% block twitter-title %}
- {% if THREADS_ON_INDEX %}
- {% trans "Categories" %}
- {% else %}
- {{ settings.index_title|default:settings.forum_name }}
- {% endif %}
- {% endblock twitter-title %}
- {% block og-description %}
- {% if not THREADS_ON_INDEX and settings.index_meta_description %}
- {{ settings.index_meta_description }}
- {% else %}
- {% blocktrans trimmed count categories=categories|length with forum_name=settings.forum_name %}
- There is {{ categories }} main category currenty available on the {{ forum_name }}.
- {% plural %}
- There are {{ categories }} main categories currenty available on the {{ forum_name }}.
- {% endblocktrans %}
- {% endif %}
- {% endblock og-description %}
- {% block twitter-description %}
- {% if not THREADS_ON_INDEX and settings.index_meta_description %}
- {{ settings.index_meta_description }}
- {% else %}
- {% blocktrans trimmed count categories=categories|length with forum_name=settings.forum_name %}
- There is {{ categories }} main category currenty available on the {{ forum_name }}.
- {% plural %}
- There are {{ categories }} main categories currenty available on the {{ forum_name }}.
- {% endblocktrans %}
- {% endif %}
- {% endblock twitter-description %}
- {% block og-url %}{% absoluteurl request_path %}{% endblock %}
- {% block twitter-url %}{% absoluteurl request_path %}{% endblock %}
- {% block content %}
- <div class="page page-categories{{ categories|iffalse:' page-message' }}">
- {% include "misago/categories/header.html" %}
- <div class="container page-container">
- {% include "misago/categories/body.html" %}
- </div>
- </div>
- {% endblock content %}
|