mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-17 21:20:32 -04:00
7 lines
192 B
HTML
7 lines
192 B
HTML
{% macro show_more(url, label, with_border=True) %}
|
|
<a
|
|
href="{{ url }}"
|
|
class="show-more{% if not with_border %}-no-border{% endif %}"
|
|
><span>{{ label }}</span></a>
|
|
{% endmacro %}
|