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

404.html « layouts - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 941ecc16daee570b6c3bd545e8a501312cb87c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "header" }}
    <link rel="stylesheet" href="{{ "/assets/css/404.css" | relURL }}">
{{ end }}

{{ define "navbar" }}
    {{ partial "navigators/navbar-2.html" (dict "baseURL" site.BaseURL "title" site.Title "hasToggleButton" false) }}
{{ end }}

{{ define "content" }}
<div class="container">
    <div class="notFound">
        <img src="{{ "/assets/images/404.png" | relURL }}" alt="">
        <div class="message">
            <h1>404</h1>
            <h4>The page you are looking for is not there yet.</h4>
        </div>
    </div>
</div>
{{ end }}