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

404.html « layouts - github.com/wileybaba/hugo-theme-robotico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d552a6345463bb84a41e437ed9f55a09d29a8aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
    <div class="container">
        <div class="my-5 text-center">
            {{ if isset .Site.Params "logofile" }}
                <img src="{{ .Site.Params.logofile | absURL }}" alt="logo" style="max-height:125px;" />
            {{ end }}
            <h1 class="my-5">404</h1>
            <h2 class="mb-3">The page you were looking for does not exist.</h2>
            <a href="/">Visit the home page</a>
        </div>
    </div>
{{ end }}