blob: 2da5b9dc43a6d140d0d372554cc2cd501a6f08f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% macro target_attribute(new_tab) %}
{%- set blank_target = "" -%}
{%- if new_tab -%}
{%- set blank_target = "target=_blank" -%}
{%- endif -%}
{{ blank_target }}
{% endmacro target_attribute %}
|