scheepersschoolleed, en fixes
[martlubbers.net.git] / _layouts / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <title>{{ page.title }}</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6 <meta name="viewport" content="width=device-width, initial-scale=1" />
7 {% include localizations.html %}
8 </head>
9 <body>
10 <header>
11 <h1>{{ page.title }}</h1>
12 {% include language-switch.html %}
13 {% if page.language_reference != "home" %}
14 {%- assign home_page = site.pages
15 | where: 'language_reference', 'home'
16 | where: 'language', page.language %}
17 <a href="{{ site.baseurl }} {{ home_page[0].url }}">({{ site.data.snippets.home[page.language] }})</a>
18
19 {% endif %}
20 </header>
21
22 <section>
23 {{ content }}
24 </section>
25
26 {% if page.language_reference == "home" %}
27 {% include posts.html %}
28 {% endif %}
29
30 {% include footer.html %}
31 </body>
32 </html>