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: c602109b47be109e8c95e28b1c6297721b19face (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{ define "header" }}
    <link rel="stylesheet" href="{{ "/css/404.css" | relURL }}">
{{ end }}

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

{{ define "content" }}
{{/* not found image */}}
{{ $notFoundImage := "/images/404.png" }}

{{/* resize the image. don't resize svg because it is not supported */}}
{{ $notFoundImage := resources.Get $notFoundImage}}
{{ if and $notFoundImage (ne $notFoundImage.MediaType.SubType "svg") }}
  {{ $notFoundImage = $notFoundImage.Resize "1500x" }}
{{ end }}
{{ $notFoundImage = $notFoundImage.RelPermalink}}

<div class="container">
    <div class="notFound">
        <img src="{{ $notFoundImage }}" alt="Page Not Found">
        <div class="message">
            <h1>404</h1>
            <h4>{{ i18n "err_404" }}</h4>
        </div>
    </div>
</div>
{{ end }}