You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
962 B

{{ 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>
<div class="prose dark:prose-invert" style="display:none;">
<script type="text/javascript">
let url = 'https://chronos.oe7drt.com/inc.php?site=';
url += document.referrer;
url += '&permalink=';
url += document.URL;
url += '&id=' + Math.random();
var xhttp = new XMLHttpRequest();
xhttp.open("GET", url, true);
xhttp.send();
</script>
<p>
This site uses javascript to report 404 pages. Please let javascript
do it's job on this website. It helps me identify dead links that I can
take care of. <em>Thanks a lot!</em>
</p>
</div>
{{ end }}