forked from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
17 lines (16 loc) · 761 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: page
permalink: /404.html
title: titles.unk
description: descriptions.unk
redirect: true
---
<!-- We should use the message in all languages, since jekyll-multiple-languages-plugin can't handle the 404 page. -->
<!-- https://github.com/kurtsson/jekyll-multiple-languages-plugin/issues/156#issuecomment-636135905 -->
{% for language in site.languages %}
{% if language == site.languages.first %}
<p>{{ site.translations[language].not_found.message }} <a href="{{ site.baseurl }}/">{{ site.translations[language].not_found.main_page }}</a>.</p>
{% else %}
<p>{{ site.translations[language].not_found.message }} <a href="{{ site.baseurl }}/{{ language }}/">{{ site.translations[language].not_found.main_page }}</a>.</p>
{% endif %}
{% endfor %}