url.html (434B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{% macro internal(path, text, newtab=false, trailing_slash=true) -%} <a href="{{ get_url(path=path, trailing_slash=trailing_slash) }}" {%- if newtab %} target="_blank" {%- endif %}> {{ text }} </a> {%- endmacro internal %} {% macro external(url, text, icon=true) -%} <a href="{{ url }}" rel="noopener noreferrer nofollow" target="_blank"> {{ text }}{%- if icon %} {%- endif -%} </a> {%- endmacro external %}