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

404.html « layouts - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b68fe03bd9dce9bf776d7000a4cfebaf40886f94 (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
<!DOCTYPE html>
<html>
  <head>
    <title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
    {{if .Site.Params.themeStyle}}
      {{ partial (printf "%s/head.html" .Site.Params.themeStyle) . }}
    {{else}}
      {{ partial "head.html" . }}
    {{end}}
  </head>
  <body data-url="{{ .RelPermalink }}">
    
	<h1>{{T "title-404"}}</h1>
	<p>
	</p>
	<p>{{T "message-404"}}</p>
	<p></p>
	<p><a href="{{.Site.BaseURL}}">{{T "Go-to-homepage"}}</a></p>
	<p><img src="{{"images/gopher-404.jpg" | relURL}}" style="width:50%"></img></p>    
    

  </body>
</html>