category.html 352 B

1234567891011121314
  1. {% set page_title = categories.keys()[0].title %}
  2. {% set active_forum_nav=True %}
  3. {% extends theme("layout.html") %}
  4. {% block content %}
  5. <ol class="breadcrumb">
  6. <li><a href="{{ url_for('forum.index') }}">Forum</a></li>
  7. <li class="active">{{ categories.keys()[0].title }}</li>
  8. </ol>
  9. {% include "forum/category_layout.html" %}
  10. {% endblock %}