Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ public/
resources/
hugo.exe
.hugo_build.lock
.DS_Store
.venv
23 changes: 16 additions & 7 deletions layouts/404.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
{{ define "main" }}
<h1>404 Not Found</h1>
<p>Sorry, we couldn't find the page you were looking for.</p>
<p>
<a href="/">
Return to the home page
</a>
</p>
<article class="container o-single">
<div class="o-single__header">
<h2 data-pagefind-meta="title">404 - Page Not Found</h2>
</div>
<div class="content" data-pagefind-body="">
<p>Oops! The page you’re looking for is unavailable or has been moved.</p>
<p>Here's what you can do next:</p>
<ul>
<li><strong>Double-check the URL:</strong> Make sure there are no typos in the address.</li>
<li><strong>Go to the homepage:</strong> <a href="/">Return to the home page</a> and navigate from there.</li>
<li><strong>Use the navigation:</strong> Try browsing via the menu or using the search function.</li>
<li><strong>Contact us:</strong> If you need assistance, feel free to reach out. <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<p>We're happy to help!</p>
</div>
</article>
{{ end }}
Loading