mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-02 07:00:51 -04:00
Indent sub navigation items
This commit is contained in:
@@ -108,6 +108,10 @@
|
||||
a:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
ol ol & {
|
||||
padding-left: $gutter;
|
||||
}
|
||||
}
|
||||
|
||||
&__item--active {
|
||||
|
||||
@@ -3,18 +3,20 @@ def features_nav():
|
||||
{
|
||||
"name": "Features",
|
||||
"link": "main.features",
|
||||
},
|
||||
{
|
||||
"name": "Emails",
|
||||
"link": "main.features_email",
|
||||
},
|
||||
{
|
||||
"name": "Text messages",
|
||||
"link": "main.features_sms",
|
||||
},
|
||||
{
|
||||
"name": "Letters",
|
||||
"link": "main.features_letters",
|
||||
"sub_navigation_items": [
|
||||
{
|
||||
"name": "Emails",
|
||||
"link": "main.features_email",
|
||||
},
|
||||
{
|
||||
"name": "Text messages",
|
||||
"link": "main.features_sms",
|
||||
},
|
||||
{
|
||||
"name": "Letters",
|
||||
"link": "main.features_letters",
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Roadmap",
|
||||
|
||||
@@ -1,18 +1,29 @@
|
||||
{% macro sub_navigation_item(item) %}
|
||||
<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="{{ url_for(item['link']) }}" itemprop="item">
|
||||
<span itemprop="name">{{item['name']}}</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endmacro %}
|
||||
|
||||
{% 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="{{ url_for(item['link']) }}" itemprop="item">
|
||||
<span itemprop="name">{{item['name']}}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ sub_navigation_item(item) }}
|
||||
{% if item.sub_navigation_items %}
|
||||
<ol itemscope itemtype="http://schema.org/ItemList">
|
||||
{% for sub_item in item.sub_navigation_items %}
|
||||
{{ sub_navigation_item(sub_item) }}
|
||||
{% endfor %}
|
||||
</ol>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user