mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-25 19:50:49 -04:00
16 lines
454 B
HTML
16 lines
454 B
HTML
|
|
{% macro pill(
|
||
|
|
title,
|
||
|
|
items=[],
|
||
|
|
current_value=None
|
||
|
|
) %}
|
||
|
|
<nav role='navigation' class='pill' aria-labelledby="pill_{{title}}">
|
||
|
|
<h2 id="pill_{{title}}" class="visuallyhidden">{{title}}</h2>
|
||
|
|
{% for label, option, link in items %}
|
||
|
|
{% if current_value == option %}
|
||
|
|
<span aria-hidden="true">{{ label }}</span>
|
||
|
|
{% else %}
|
||
|
|
<a href="{{ link }}">{{ label }}</a>
|
||
|
|
{% endif %}
|
||
|
|
{% endfor %}
|
||
|
|
</nav>
|
||
|
|
{% endmacro %}
|