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: a8bb465c96266d650c5875dbe92be94359748b94 (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
30
31
<!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">
    没找到该页面,请检查 url 或 <a href="/">返回首页</a>
  </div>
</article>
<style>
  .subtitle a {
    text-decoration: underline;
  }
</style>
{{ end }}