2020-01-12 15:33:02 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ .Site.Language.Lang }}">
|
2022-01-06 13:58:10 +01:00
|
|
|
<head>
|
2021-04-22 22:07:09 +02:00
|
|
|
{{ partial "head/meta" . }}
|
2022-01-23 13:21:44 +01:00
|
|
|
<title>{{ i18n "error_page_title" }}</title>
|
2021-04-22 22:07:09 +02:00
|
|
|
|
|
|
|
{{ partial "head/favicons" . }}
|
|
|
|
{{ partial "head/others" . }}
|
2022-01-06 13:58:10 +01:00
|
|
|
</head>
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
<body>
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
|
2020-01-12 15:33:02 +01:00
|
|
|
<div class="wrapper">
|
2022-01-06 13:58:10 +01:00
|
|
|
<input type="checkbox" class="hidden" id="menu-header-control" />
|
2022-01-23 13:21:44 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ partial "site-header" (dict "Root" . "MenuEnabled" false) }}
|
|
|
|
|
|
|
|
|
|
|
|
<main class="gdoc-error flex-even">
|
|
|
|
<div class="flex align-center justify-center">
|
|
|
|
<div class="gdoc-error__icon">
|
2022-04-18 20:33:23 +02:00
|
|
|
<svg class="gdoc-icon gdoc_cloud_off"><use xlink:href="#gdoc_cloud_off"></use></svg>
|
2022-01-06 13:58:10 +01:00
|
|
|
</div>
|
|
|
|
<div class="gdoc-error__message">
|
2022-01-23 13:21:44 +01:00
|
|
|
<div class="gdoc-error__line gdoc-error__title">{{ i18n "error_message_title" }}</div>
|
|
|
|
<div class="gdoc-error__line gdoc-error__code">{{ i18n "error_message_code" }}</div>
|
2022-01-06 13:58:10 +01:00
|
|
|
<div class="gdoc-error__line gdoc-error__help">
|
2022-01-23 13:21:44 +01:00
|
|
|
{{ i18n "error_message_text" .Site.BaseURL | safeHTML }}
|
2020-01-12 15:33:02 +01:00
|
|
|
</div>
|
2022-01-06 13:58:10 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ partial "site-footer" . }}
|
2020-01-12 15:33:02 +01:00
|
|
|
|
|
|
|
</div>
|
2022-01-06 13:58:10 +01:00
|
|
|
</body>
|
2020-01-12 15:33:02 +01:00
|
|
|
</html>
|