aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/404.html
blob: 76d46d9699cc9f6cd065160d13b6467269bf473d (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
{{ 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 }}