404.html - hugo - [fork] hugo port for 9front
(HTM) git clone https://git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
404.html (841B)
---
1 {{ define "main" }}
2 <main class="grid min-h-full place-items-center px-6 py-24 sm:py-32 lg:px-8">
3 <div class="text-center">
4 <h1
5 class="mt-4 text-5xl font-semibold tracking-tight text-balance text-gray-900 sm:text-7xl dark:text-gray-300">
6 Page not found
7 <img
8 src="{{ `images/gopher-side_color.svg` | relURL }}"
9 alt="gopher"
10 class="w-32 ml-12 float-right">
11 </h1>
12
13 <div class="mt-10 flex items-center justify-center gap-x-6">
14 <a
15 href="{{ site.Home.RelPermalink }}"
16 class="rounded-md bg-blue-500 px-3.5 py-2.5 text-sm font-semibold text-white shadow-xs hover:bg-blue-400 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600"
17 >Go back home</a
18 >
19 </div>
20 </div>
21 </main>
22 {{ end }}