💄 404-page got more appealing

This commit is contained in:
sindrekjelsrud 2023-07-14 21:38:39 +02:00
parent 0996b7e4fd
commit 997079038b
2 changed files with 24 additions and 0 deletions

13
assets/css/common/404.css Normal file
View file

@ -0,0 +1,13 @@
.not-found {
position: absolute;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
}
.not-found-text {
font-size: 50px;
font-weight: 700;
}

11
layouts/404.html Normal file
View file

@ -0,0 +1,11 @@
{{- define "main" }}
<div class="not-found">
<iframe src="https://giphy.com/embed/xTiIzJSKB4l7xTouE8" width="480" height="208" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
</div>
<div class="not-found">
<h1 class="not-found-text">404</h1>
</div>
{{- end }}{{/* end main */ -}}