head.html 683 B

12345678910111213141516171819
  1. {% macro breadcrumb(hrefs=None,active=None) -%}
  2. <ol class="breadcrumb" style="margin:0">
  3. {% if not active %}
  4. <li><a href="{{ url_for('forums.forums') }}"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>{{ _('Index') }}</a></li>
  5. {% else %}
  6. <li><a href="{{ url_for('forums.forums') }}"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>{{ _('Index') }}</a></li>
  7. {{ breadcrumb_list(hrefs) }}
  8. <li class="active">{{ active }}</li>
  9. {% endif %}
  10. </ol>
  11. {%- endmacro %}
  12. {% macro breadcrumb_list(hrefs) -%}
  13. {% if hrefs %}
  14. {% for k,v in hrefs.items() %}
  15. <li><a href="{{ v }}">{{ k }}</a></li>
  16. {% endfor %}
  17. {% endif %}
  18. {%- endmacro %}