test 404page

This commit is contained in:
2024-07-01 23:10:12 +03:00
parent 3176b72711
commit 56b7ca1e4c
2 changed files with 28 additions and 0 deletions

8
content/404/_index.md Normal file
View File

@@ -0,0 +1,8 @@
---
title: "404"
description: ""
insert_anchor_links: "left"
template: "404.html"
---

20
templates/404.html Normal file
View File

@@ -0,0 +1,20 @@
{% extends "_default/base.html" %}
{% block content %}
<main class="container mx-auto text-center">
<div class="lg:pt-20 pt-8">
<div>
<img class="w-64 md:w-80 mx-auto" src="/images/404.png" alt="404_image">
</div>
<div class="max-w-5xl mx-auto">
<h3 class="text-2xl md:text-5xl font-semibold">You seem to have ended up on <span class="blue">a missing page!</span></h3>
<p class="font-normal">This could mean that youve entered the wrong URL or youve clicked on content which has moved locations or is no longer live. If you need assistance, click on the blue chat icon at the bottom of the screen to speak with real humans on our support team. Or go back to <a href="/">home</a>.</p>
</div>
</div>
</main>
{% endblock content %}