theme/layouts/404.html

9 lines
228 B
HTML
Raw Normal View History

2019-02-02 16:17:50 +00:00
{{ partial "header.html" . }}
2022-01-29 17:12:09 +00:00
<section class="w-screen h-screen bg-yellow-200 flex items-center justify-center">
<h1 class="font-title pb-8 text-4xl font-bold">
Not found
</h1>
<a href="/">Back to home page</a>
2019-02-02 16:17:50 +00:00
</section>