Skip to content
14 changes: 14 additions & 0 deletions content/_404.de.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "404 – Seite nicht gefunden"
---

Hoppla! Die gesuchte Seite ist nicht verfügbar oder wurde verschoben.

Probiere folgende Dinge:

- **URL überprüfen:** Stelle sicher, dass die Adresse keine Tippfehler enthält.
- **Zur Startseite:** Kehre zur Startseite zurück und navigiere von dort aus.
- **Navigation nutzen:** Nutze das Menü oder die Suchfunktion.
- **Kontaktieren Sie uns:** Bei Fragen oder Problemen kannst du dich gerne an uns wenden: [[email protected]](mailto:[email protected])

Wir helfen dir gerne!
14 changes: 14 additions & 0 deletions content/_404.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "404 – Page not found"
---

Oops! The page you’re looking for is unavailable or has been moved.

Here's what you can do next:

- **Double-check the URL:** Make sure there are no typos in the address.
- **Go to the homepage:** Return to the home page and navigate from there.
- **Use the navigation:** Try browsing via the menu or using the search function.
- Contact us: If you need assistance, feel free to reach out: [[email protected]](mailto:[email protected])

We're happy to help!
14 changes: 14 additions & 0 deletions content/_404.fr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "404 – Page introuvable"
---

Oups ! La page que vous recherchez est indisponible ou a été déplacée.

Voici ce que vous pouvez faire ensuite :

- **Vérifiez l’URL :** Assurez-vous qu’il n’y a pas de faute de frappe dans l’adresse.
- **Accédez à la page d’accueil :** Retournez à la page d’accueil et naviguez à partir de là.
- **Utilisez la navigation :** Essayez de naviguer via le menu ou d’utiliser la fonction de recherche.
- Contactez-nous : Si vous avez besoin d’aide, n’hésitez pas à nous contacter : [[email protected]](mailto:[email protected])

Nous sommes là pour vous aider !
39 changes: 10 additions & 29 deletions layouts/404.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,12 @@
{{ define "main" }}
<article class="o-single" data-pagefind-ignore="all">
<div class="o-single__header">
<h2>404 - Page Not Found</h2>
</div>
<div class="o-single__content">
<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>
{{ with .Site.GetPage "_404" }}
<article class="o-single" data-pagefind-ignore="all">
<div class="o-single__header">
<h2>{{ .Title }}</h2>
</div>
<div class="o-single__content">
{{ .Content }}
</div>
</article>
{{ end }}
{{ end }}
Loading