mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 00:18:25 -04:00
8 lines
224 B
HTML
8 lines
224 B
HTML
{% macro show_more(url=None, label=None) %}
|
|
{% if url and label %}
|
|
<a href="{{ url }}" class="show-more"><span>{{ label }}</span></a>
|
|
{% else %}
|
|
<span class="show-more-empty"></span>
|
|
{% endif %}
|
|
{% endmacro %}
|