Files
notifications-admin/app/templates/components/show-more.html
T

7 lines
201 B
HTML
Raw Normal View History

{% macro show_more(url, label, with_border=True) %}
<a
href="{{ url }}"
2023-06-08 13:12:00 -04:00
class="usa-link show-more{% if not with_border %}-no-border{% endif %}"
><span>{{ label }}</span></a>
{% endmacro %}