mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-13 10:56:35 -04:00
7 lines
393 B
Twig
7 lines
393 B
Twig
{%- if page.translations|default({})|length >= 1 -%}
|
|
{%- for alternate in page.translations ~%}
|
|
<link rel="alternate" hreflang="{{ alternate.language }}" href="{{ url(alternate, {canonical: true}) }}" />
|
|
{%- endfor ~%}
|
|
{#- default language ~#}
|
|
<link rel="alternate" hreflang="x-default" href="{{ url(page.path, {language: config.language, canonical: true}) }}" />
|
|
{%- endif -%} |