ar.falsy.cat/layouts/404.html

16 lines
326 B
HTML
Raw Normal View History

2021-07-18 15:54:00 +00:00
<!DOCTYPE html>
<html lang="{{ .Lang }}">
2021-07-18 15:54:00 +00:00
{{ partial "head.html" . }}
<body>
2021-07-19 20:30:36 +00:00
<div class="singlePage">
2021-07-18 15:54:00 +00:00
{{partial "darkmode.html" .}}
2021-07-19 20:30:36 +00:00
<div class="centered">
2021-07-18 15:54:00 +00:00
<h1>404.</h1>
<h3>{{ i18n "404_message" }}</h3>
<a href="{{ .Site.BaseURL }}">{{ i18n "404_back" }}</a>
2021-07-18 15:54:00 +00:00
</div>
</div>
</body>
</html>