mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-12 20:43:19 +00:00
17 lines
715 B
HTML
17 lines
715 B
HTML
{{ define "main" }}
|
|
{{ $base := partial "utilities/GetStaticURL" (dict "url" "/") }}
|
|
<div class="d-flex flex-fill">
|
|
<div class="container-xxl my-auto">
|
|
<div class="text-center">
|
|
<span class="text-secondary fw-bold">
|
|
{{ partial "assets/icon.html" (dict "icon" "fa face-frown fa-10x") }}
|
|
<p class="display-1 mt-3 fw-bold">404</p>
|
|
<p class="fs-3">{{ T "pageNotFoundTitle" }}</p>
|
|
</span>
|
|
{{- $home := printf "<a href=\"%s\">%s</a>" $base (T "pageNotFoundHome") -}}
|
|
<p>{{ T "pageNotFound" $home | safeHTML }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|