atst/templates/components/edit_link.html
2019-01-02 09:36:29 -05:00

9 lines
182 B
HTML

{% from "components/icon.html" import Icon %}
{% macro EditLink(url) -%}
<a class='icon-link' href='{{ url }}'>
{{ Icon('edit') }}
<span>edit</span>
</a>
{% endmacro %}