20 lines
410 B
HTML
20 lines
410 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.LanguageCode }}">
|
||
|
{{ partial "head.html" . }}
|
||
|
<body>
|
||
|
{{ partial "body-top" . }}
|
||
|
<main>
|
||
|
|
||
|
<div class="row full center-xs middle-xs">
|
||
|
<div class="col-xs-12">
|
||
|
<h1>404!</h1>
|
||
|
<p>{{ i18n "404Message" }}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</main>
|
||
|
{{ partial "footer.html" . }}
|
||
|
{{ partial "body-bottom" . }}
|
||
|
</body>
|
||
|
</html>
|