Files
website/layouts/404.html
Akshay Kolli 9dda076b56
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 23s
Redesign site and optimize page performance
2026-07-18 19:57:44 -04:00

12 lines
445 B
HTML

{{ define "main" }}
<main class="home error-page" id="main-content">
{{ partial "home-intro.html" . }}
<section class="error-panel" aria-labelledby="not-found-heading">
<p class="error-code" aria-hidden="true">404</p>
<h2 id="not-found-heading">File not found</h2>
<p>The page may have moved, or the address may be incomplete.</p>
<a class="post-button" href="{{ "/" | relURL }}">&lt; Home</a>
</section>
</main>
{{ end }}