12345678910111213141516171819202122 |
- {% extends "misago/base.html" %}
- {% load i18n %}
- {% block title %}
- {% if settings.forum_index_title %}
- {{ settings.forum_index_title }}
- {% else %}
- {{ settings.forum_name }}
- {% endif %}
- {% endblock title %}
- {% block meta-description %}{{ settings.forum_index_meta_description }}{% endblock meta-description %}
- {% block content %}
- <div class="container">
- <p class="lead">This is Django-rendered forum index template.</p>
- <p>Neat, huh?</p>
- </div>
- {% endblock content %}
|