hermit-V2/layouts/404.html

14 lines
554 B
HTML
Raw Normal View History

2018-10-23 01:15:50 -04:00
{{ define "main" }}
<div id="spotlight" class="error-404 animated fadeIn">
2023-11-12 10:26:10 -05:00
<p class="img-404">{{- partial "svg.html" (dict "context" . "name" "404-lighthouse") -}}</p>
2018-10-23 01:15:50 -04:00
<div class="banner-404">
<h1>404</h1>
<p>{{ i18n "notFound" }}</p>
2018-10-23 01:15:50 -04:00
<p class="btn-404">
2023-11-12 10:26:10 -05:00
<a href="{{.Site.BaseURL}}">{{- partial "svg.html" (dict "context" . "name" "404-home") -}}{{ i18n "home" }}</a>
<a href="{{ "posts" | absLangURL }}">{{- partial "svg.html" (dict "context" . "name" "404-archive") -}}{{ i18n "archives" }}</a>
2018-10-23 01:15:50 -04:00
</p>
</div>
</div>
{{ end }}