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

404.html « layouts - github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6499a965cafc649430a410679e61b2e26c1a511 (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
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}

<body>
  <div id="main">
    <!-- {{- partial "nav.html" . -}} -->
    <!-- {{- partial "header.html" . -}} -->
    {{- block "404-main" . }}{{- end }}
  </div>
  <!-- {{- partial "footer.html" . -}} -->
  <!-- {{- partial "backtotop.html" . -}} -->
  <!-- {{- block "script" . }}{{- end }} -->
</body>

</html>
{{ define "404-main" }}
<article class="message is-primary is-large">
  <div class="message-header">
    <p>404 Page Not Found</p>
  </div>
  <div class="message-body">
    <p>{{ i18n "404-info" }}</p>
  </div>
</article>
{{ end }}