tabi/templates/macros/target_attribute.html
2025-04-14 17:57:33 +02:00

11 lines
No EOL
209 B
HTML

{% macro target_attribute(new_tab=false) %}
{%- set blank_target = "" -%}
{%- if new_tab -%}
{%- set blank_target = "target=_blank" -%}
{%- endif -%}
{{ blank_target }}
{% endmacro target_attribute %}