1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {% extends "misago/base.html" %}
- {% load i18n misago_stringutils %}
- {% block title %}{{ category.name }} | {{ block.super }}{% endblock title %}
- {% block meta-description %}{{ category.description|striplinebreaks }}{% endblock meta-description %}
- {% block content %}
- <div{% if category.css %} class="page-{{ category.css_class }}"{% endif %}>
- <div class="page-header">
- <div class="container">
- {% if path %}
- <ol class="breadcrumb">
- {% for crumb in path|slice:":-1" %}
- <li>
- <a href="{{ crumb.get_absolute_url }}">{{ crumb.name }}</a>{% if not forloop.last %}<span class="fa fa-chevron-right"></span>{% endif %}
- </li>
- {% endfor %}
- </ol>
- {% endif %}
- <h1>{{ category.name }}</h1>
- </div>
- </div>
- <div class="container">
- {% if category.description %}
- <div class="lead">
- {{ category.description|escape|urlize|linebreaks }}
- </div>
- {% endif %}
- {% if forums %}
- {% include "misago/forums/subforums.html" with category=category %}
- {% else %}
- <p class="lead">
- {% trans "No forums are set in this category or you don't have permission to see them." %}
- </p>
- {% endif %}
- </div>
- </div>
- {% endblock content %}
- {% block javascripts %}
- {{ block.super }}
- {% include "misago/forums/js.html" %}
- {% endblock javascripts %}
|