2021-05-28 15:51:23 +02:00
|
|
|
{% set breadcrumbs %}
|
|
|
|
{% if not (request.path == url_for('.index')) %}
|
|
|
|
<li class="tab disabled"><i class="material-icons">navigate_next</i></li>
|
|
|
|
{% endif %}
|
2021-11-18 12:09:15 +01:00
|
|
|
{% if request.path == url_for('.faq') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('.faq') }}" target="_self">Frequently Asked Questions</a></li>
|
2021-05-28 15:51:23 +02:00
|
|
|
{% elif request.path == url_for('.dashboard') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('.dashboard') }}" target="_self">Dashboard</a></li>
|
|
|
|
{% elif request.path == url_for('.news') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('.news') }}" target="_self">News</a></li>
|
|
|
|
{% elif request.path == url_for('.terms_of_use') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('.terms_of_use') }}" target="_self">Terms of use</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% endset %}
|