9 lines
182 B
HTML
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 %}
|