define 404 page

This commit is contained in:
acarril 2023-05-02 09:50:17 -04:00
parent f4002b73b1
commit 1bcba1935d
2 changed files with 18 additions and 0 deletions

View file

@ -367,3 +367,11 @@ main#content .profile-image {
.image-wrapper:hover::before {
opacity: 1;
}
main#content .bottom-image {
position: fixed;
bottom: 0;
width: 30%;
height: auto;
max-width: 300px; /* Set the maximum width */
}

View file

@ -0,0 +1,10 @@
{{ define "main" }}
<main id="main">
<div>
<h1 id="title">404 Not Found.</h1>
<h3></h3>
</div>
<p>This page has been optimized away.</p>
</main>
<img src="{{ "img/thinking_foot.png" | absURL }}" alt="thinking foot" class="bottom-image">
{{ end }}