1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-09-11 04:28:55 +00:00

refactor: Move videos to Ghost (#3115)

This commit is contained in:
2025-09-10 01:14:23 -05:00
parent 30f05ff291
commit 815eb65d10
28 changed files with 13 additions and 903 deletions

View File

@@ -44,7 +44,11 @@
<link rel="next" href="{{ page.next_page.url | url }}">
{% endif %}
{% if config.extra.alternate is iterable %}
{% if page.is_homepage %}
<link rel="alternate" href="https://www.privacyguides.org/" hreflang="x-default">
{% else %}
<link rel="alternate" href="{{ "https://www.privacyguides.org/" ~ "en" ~ "/" ~ page.url }}" hreflang="x-default">
{% endif %}
{% for alt in config.extra.alternate %}
<link rel="alternate" href="{{ "https://www.privacyguides.org/" ~ alt.lang ~ "/" ~ page.url }}" hreflang="{{ alt.lang | d(lang.t('language')) }}">
{% endfor %}