mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-02 12:49:01 -04:00
Added new sub navigation component
This commit is contained in:
24
app/templates/components/sub-navigation.html
Normal file
24
app/templates/components/sub-navigation.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{% macro sub_navigation(
|
||||
item_set
|
||||
) %}
|
||||
<nav class="sub-navigation">
|
||||
<ol itemscope itemtype="http://schema.org/ItemList">
|
||||
{% for item in item_set %}
|
||||
<li class="sub-navigation__item {% if item['link'] == request.endpoint %} sub-navigation__item--active {% endif %}"
|
||||
itemprop="itemListElement"
|
||||
itemscope
|
||||
itemtype="http://schema.org/ListItem"
|
||||
>
|
||||
<a href="{% if item['external_link'] %}
|
||||
{{ item['link'] }}
|
||||
{% else %}
|
||||
{{ url_for(item['link']) }}
|
||||
{% endif %}"
|
||||
itemprop="item">
|
||||
<span itemprop="name">{{item['name']}}</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</nav>
|
||||
{% endmacro %}
|
||||
Reference in New Issue
Block a user