mirror of
https://github.com/welpo/tabi.git
synced 2025-10-11 15:56:15 +02:00
11 lines
204 B
HTML
11 lines
204 B
HTML
{% macro target_attribute(new_tab) %}
|
|
|
|
{%- set blank_target = "" -%}
|
|
|
|
{%- if new_tab -%}
|
|
{%- set blank_target = "target=_blank" -%}
|
|
{%- endif -%}
|
|
|
|
{{ blank_target }}
|
|
|
|
{% endmacro target_attribute %}
|