congo/layouts/404.html

10 lines
336 B
HTML
Raw Permalink Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
2021-08-17 06:48:08 +00:00
<h1 class="mb-3 text-4xl font-extrabold">{{ i18n "error.404_title" | emojify }}</h1>
2023-12-26 00:56:32 +00:00
<p class="mb-12 mt-8 text-neutral-400 dark:text-neutral-500">
2021-08-20 07:02:08 +00:00
{{ i18n "error.404_error" | emojify }}
</p>
<div class="prose dark:prose-invert">
2021-08-17 06:48:08 +00:00
<p>{{ i18n "error.404_description" | emojify }}</p>
2021-08-11 05:28:33 +00:00
</div>
{{ end }}