1
0
Fork 0
yinghong-massage.de/templates/macros.html

9 lines
344 B
HTML
Raw Permalink Normal View History

2023-05-30 23:11:17 +00:00
{% macro btn(link, text) %}
2023-05-31 22:49:14 +00:00
<a class="py-1.5 px-1 my-1.5 mx-3 w-full max-w-screen-md text-center text-white no-underline bg-green-700 rounded transition duration-500 hover:scale-105"
2023-05-30 23:11:17 +00:00
href="{{ link | safe }}">{{ text }}</a>
{% endmacro %}
{% macro email_link(email) %}
<a href="mailto:{{ email }}">{{ email }}</a>
{% endmacro %}