dotfiles

My PC Dotfiles & Website

url.html (434B)


{% 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 %}