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

404.html « layouts - github.com/fncnt/vncnt-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b79ec51e314251e4a3a0cbf19a52d752d0e8cef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
  {{ partial "includes" . }}
  <div class="error404">
    <div class="row">
      <div class="twelve columns">
        <h1>{{ "**404**" | markdownify }}</h1>
      {{ with .Site.Params.error404 }}
        <h2>{{ "---" | markdownify }}{{ . | markdownify }}</h2>
      {{ else }}
        <h2>{{ "---" | markdownify }}{{ "There is no such page." | markdownify}}</h2>
      {{ end }}
      </div>
    </div>
  </div>
</html>