2020-01-12 14:33:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
|
|
|
|
|
|
<head>
|
2021-04-22 20:07:09 +00:00
|
|
|
{{ partial "head/meta" . }}
|
|
|
|
<title>Lost? Don't worry</title>
|
|
|
|
|
|
|
|
{{ partial "head/favicons" . }}
|
|
|
|
{{ partial "head/others" . }}
|
2020-01-12 14:33:02 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
|
|
|
|
<div class="wrapper">
|
2020-02-24 21:11:13 +00:00
|
|
|
{{ partial "site-header" (dict "Root" . "MenuEnabled" false) }}
|
2020-01-12 14:33:02 +00:00
|
|
|
|
|
|
|
<main class="gdoc-error flex-even">
|
|
|
|
<div class="flex align-center justify-center">
|
|
|
|
<div class="gdoc-error__icon">
|
2021-03-04 21:01:10 +00:00
|
|
|
<svg class="icon gdoc_cloud_off"><use xlink:href="#gdoc_cloud_off"></use></svg>
|
2020-01-12 14:33:02 +00:00
|
|
|
</div>
|
|
|
|
<div class="gdoc-error__message">
|
|
|
|
<div class="gdoc-error__line gdoc-error__title">Lost?</div>
|
|
|
|
<div class="gdoc-error__line gdoc-error__code">Error 404</div>
|
|
|
|
<div class="gdoc-error__line gdoc-error__help">
|
2020-07-02 18:41:27 +00:00
|
|
|
Seems like what you are looking for can't be found. Don't worry we can
|
2020-01-12 14:33:02 +00:00
|
|
|
bring you back to the <a class="gdoc-error__link" href="{{ .Site.BaseURL }}">homepage</a>.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ partial "site-footer" . }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|