oe7drt-website/layouts/404.html

23 lines
1.1 KiB
HTML
Raw Normal View History

{{ define "main" }}
<h1 class="mb-3 text-4xl font-extrabold">{{ i18n "error.404_title" | emojify }}</h1>
<p class="mt-8 mb-12 text-neutral-400 dark:text-neutral-500">
{{ i18n "error.404_error" | emojify }}
</p>
<div class="prose dark:prose-invert">
<p>{{ i18n "error.404_description" | emojify }}</p>
</div>
2022-12-21 18:23:13 +01:00
<div class="mt-8 prose dark:prose-invert">
<strong>Please use the search on this website!</strong><br />
2023-11-06 20:03:47 +01:00
You may find what you search. Click on the magifying glass 🔍 in the top
right corner or hit <kbd>/</kbd> (that is usually <kbd>Shift + 7</kbd>
on a german layout) on your keyboard to open the search.
2022-12-21 18:23:13 +01:00
</div>
<div class="mt-8 prose dark:prose-invert">
2023-11-06 20:03:47 +01:00
There are still a lot of URLs in search engines that refer to old pages
2022-12-21 18:23:13 +01:00
and I'm trying a new method to get them removed from search results. This means,
that I do not redirect 404 errors as 301 errors to the new location as no search
2023-11-06 20:03:47 +01:00
engine seems to update their indexes with the new URLs. The negative effect is,
that you have to search the updated URL by hand.
2022-12-16 17:19:36 +01:00
</div>
{{ end }}