mirror of
https://github.com/ipdb/website.git
synced 2024-11-22 09:36:52 +01:00
prepare functionality for alternate language pages
This commit is contained in:
parent
9143ad4f0e
commit
b623e67486
@ -48,6 +48,10 @@
|
|||||||
<!-- Canonical URL -->
|
<!-- Canonical URL -->
|
||||||
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}">
|
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}">
|
||||||
|
|
||||||
|
{% for alt in page.alternate %}
|
||||||
|
<link rel="alternate" href="{{ site.url }}{{ alt.link }}" hreflang="{{ alt.language }}" />
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
<!-- Apple -->
|
<!-- Apple -->
|
||||||
<meta name="apple-mobile-web-app-title" content="{{ site.title }}">
|
<meta name="apple-mobile-web-app-title" content="{{ site.title }}">
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
{% assign active = 'active' %}
|
{% assign active = 'active' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% unless page.path contains 'foundation/index' %}
|
{% unless page.path contains 'foundation/index' or page.language == 'de' %}
|
||||||
<a class="menu__link {{ active }}" href="{{ page.url }}">{{ page.title }}</a>
|
<a class="menu__link {{ active }}" href="{{ page.url }}">{{ page.title }}</a>
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html
|
||||||
|
{% if page.language %}
|
||||||
|
lang="{{ page.language }}"
|
||||||
|
{% else %}
|
||||||
|
lang="en"
|
||||||
|
{% endif %}
|
||||||
|
>
|
||||||
|
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
|
|
||||||
|
@ -3,4 +3,9 @@ layout: page
|
|||||||
|
|
||||||
title: Articles
|
title: Articles
|
||||||
subtitle: Articles of Association of the IPDB Foundation
|
subtitle: Articles of Association of the IPDB Foundation
|
||||||
|
|
||||||
|
language: en
|
||||||
|
alternate:
|
||||||
|
- language: de
|
||||||
|
link: /foundation/satzung/
|
||||||
---
|
---
|
||||||
|
11
_src/foundation/satzung.md
Normal file
11
_src/foundation/satzung.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
|
||||||
|
title: Satzung
|
||||||
|
subtitle: Satzung des Interplanetary Origins e.V.
|
||||||
|
|
||||||
|
language: de
|
||||||
|
alternate:
|
||||||
|
- language: en
|
||||||
|
link: /foundation/articles/
|
||||||
|
---
|
Loading…
Reference in New Issue
Block a user