mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-08-04 12:04:14 -04:00
6 lines
No EOL
328 B
Twig
6 lines
No EOL
328 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 ~%}
|
|
<link rel="alternate" hreflang="x-default" href="{{ url(page, {canonical: true}) }}">
|
|
{%- endif -%} |