theme/layouts/404.html
kolaente 0eb40547ec
All checks were successful
continuous-integration/drone/push Build is passing
fix: 404 page height
2022-01-29 18:24:52 +01:00

14 lines
506 B
HTML

{{ partial "header.html" . }}
<section class="w-full h-screen bg-yellow-200 flex items-center justify-center flex-col">
<h1 class="font-title pb-8 text-5xl font-bold">
Page not found
</h1>
<a href="/" class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" />
</svg>
Back to home page
</a>
</section>