blob: 1fac202c5241a32e774744e05813432d0ff254bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{{ define "title" }}
404
{{ end }}
{{ define "main" }}
<style>
footer{display:none}
.not-found {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.not-found * {
margin: 2rem;
line-height: 0;
}
h1 {
padding-bottom: 0.45em;
font-size: 5rem;
}
</style>
<div class="not-found">
<h1>🏝️</h1>
<h3>OHHHHH~
</h3>
<h3>Who lives in a pineapple under the sea?</h3>
</div>
{{ end }}
|