Welcome to mirror list, hosted at ThFree Co, Russian Federation.

404.html « layouts - github.com/ianrodrigues/hugo-tailwind-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afa69fec743ef5cfa29478f6e2917d06b186df36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "heading"}}
<div>
    <a class="text-lg mb-8 inline-block" href="{{ .Site.BaseURL | relLangURL }}">&larr; {{ i18n "back_home" }}</a>
    <h1 class="text-4xl font-bold">{{ i18n "not_found_page_title" }}</h1>
</div>
{{ end }}

{{ define "content" }}
<section class="mb-24">
    <img src="{{ "images/404-background.png" | relURL }}" alt="Page Not Found">
</section>
{{ end }}