mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-17 21:20:32 -04:00
21 lines
657 B
HTML
21 lines
657 B
HTML
{% macro browse_list(items) %}
|
|
{% if items %}
|
|
<nav class="browse-list">
|
|
<ul>
|
|
{% for item in items %}
|
|
{% if item.title and item.link %}
|
|
<li class="browse-list-item">
|
|
<a href="{{ item.link }}" class="govuk-link govuk-link--no-visited-state{% if item.destructive %} browse-list-link-destructive{% endif %}">{{ item.title }}</a>
|
|
{% if item.hint %}
|
|
<div class="browse-list-hint">
|
|
{{ item.hint }}
|
|
</div>
|
|
{% endif %}
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
{% endif %}
|
|
{% endmacro %}
|