result.html 734 B

123456789101112131415161718192021
  1. {% extends 'base/base.html' %}
  2. {% block content %}
  3. {{ breadcrumb(hrefs={_('Search'):url_for('search.search')},active=keyword)}}
  4. <div class="panel panel-primary">
  5. <div class="panel-heading">
  6. {{ _('Search') }}
  7. </div>
  8. <div class="panel-body" style="border-bottom:1px solid #eee">
  9. {% include "search/form.html" %}
  10. </div>
  11. {% for result in results %}
  12. <div class="panel-body text-center" style="padding:6px;border-bottom:1px solid #eee">
  13. <a href="{{ url_for('topic.topic',topicId=result['id']) }}">{{ result['title'] }}</a>
  14. </div>
  15. {% else %}
  16. <div class="panel-body text-center">
  17. 您的搜索没有返回结果。
  18. </div>
  19. {% endfor %}
  20. </div>
  21. {% endblock %}