12 lines
238 B
HTML
12 lines
238 B
HTML
{%- if metatags -%}
|
|
{%- for name in metatags %}
|
|
<meta
|
|
{% if name.startswith('og:') %}
|
|
property="{{ name }}"
|
|
{% else %}
|
|
name="{{ name }}"
|
|
{% endif %}
|
|
content="{{ metatags[name] | striptags | escape }}"
|
|
>
|
|
{%- endfor -%}
|
|
{%- endif -%}
|