index.html 477 B

12345678910111213141516171819202122
  1. {% extends "misago/base.html" %}
  2. {% load i18n %}
  3. {% block title %}
  4. {% if settings.forum_index_title %}
  5. {{ settings.forum_index_title }}
  6. {% else %}
  7. {{ settings.forum_name }}
  8. {% endif %}
  9. {% endblock title %}
  10. {% block meta-description %}{{ settings.forum_index_meta_description }}{% endblock meta-description %}
  11. {% block content %}
  12. <div class="container">
  13. <p class="lead">This is Django-rendered forum index template.</p>
  14. <p>Neat, huh?</p>
  15. </div>
  16. {% endblock content %}