board.html 653 B

1234567891011121314151617
  1. {% extends 'index/base.html' %}
  2. {% block title %}社区主页 - 河海大学论坛{% endblock %}
  3. {% block content %}
  4. {% import 'base/panel.html' as panel %}
  5. {% import 'base/sort_js.html' as sort %}
  6. {{ sort.sort('board_f',board.id) }}
  7. <ol class="breadcrumb" style="margin-bottom:0;">
  8. <li><a href="{{ url_for('forums.forums') }}"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>社区首页</a></li>
  9. <li class="active">{{ board.chname_f }}</li>
  10. </ol>
  11. <div class="panel panel-primary">
  12. {{ panel.header(board) }}
  13. {{ panel.body(board) }}
  14. </div>
  15. {% import 'base/view.html' as view %}
  16. {{ view.view(questions) }}
  17. {% endblock %}