topic_list.html 706 B

123456789101112131415161718192021
  1. {% extends 'base/base.html' %}
  2. {% block content %}
  3. {% if request.path.endswith('top') %}
  4. {{ breadcrumb(hrefs={_('All Topics'):url_for('topic.list')},active=_('Top Topics')) }}
  5. {% elif request.path.endswith('good') %}
  6. {{ breadcrumb(hrefs={_('All Topics'):url_for('topic.list')},active=_('Good Topics')) }}
  7. {% else %}
  8. {{ breadcrumb(active=_('All Topics')) }}
  9. {% endif %}
  10. <div class="row">
  11. <div class="col-md-9">
  12. <div class="panel panel-default">
  13. {% include "topic/_topic.html" %}
  14. {{ p_footer(topics,'topic.list')}}
  15. </div>
  16. </div>
  17. <div class="col-md-3" style="padding-left:0">
  18. {{ panel_base.topic_list() }}
  19. </div>
  20. </div>
  21. {% endblock %}