2017-11-28 11:54:36 +00:00
|
|
|
{% macro sub_navigation(
|
|
|
|
|
item_set
|
|
|
|
|
) %}
|
2017-11-28 12:00:12 +00:00
|
|
|
<nav class="sub-navigation">
|
|
|
|
|
<ol itemscope itemtype="http://schema.org/ItemList">
|
2017-12-01 10:27:56 +00:00
|
|
|
{% for item in item_set %}
|
|
|
|
|
<li class="sub-navigation__item {% if item['link'] == request.endpoint %} sub-navigation__item--active {% endif %}"
|
|
|
|
|
itemprop="itemListElement"
|
|
|
|
|
itemscope
|
2017-11-28 12:00:12 +00:00
|
|
|
itemtype="http://schema.org/ListItem"
|
|
|
|
|
>
|
2017-12-01 10:27:56 +00:00
|
|
|
<a href="{{ url_for(item['link']) }}" itemprop="item">
|
2017-11-28 12:00:12 +00:00
|
|
|
<span itemprop="name">{{item['name']}}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ol>
|
|
|
|
|
</nav>
|
2017-12-01 10:27:56 +00:00
|
|
|
{% endmacro %}
|