mirror of
https://github.com/welpo/tabi.git
synced 2025-11-02 17:10:25 +01: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 %}
|