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

404.html « layouts - github.com/wayjam/hugo-theme-mixedpaper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a0253b77ec702d7fab5a24d26e67028870467b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "title" }}HTTP 404 - {{ .Site.Title }}{{ end }}

{{ define "main" }}
  <section id="main" class="notfound">
    <div class="container">
      <div class="content">
        <h1 class="not-found-title">404</h1>
        <div class="block">
          <h3>Sorry, we couldn't find the page you're looking for.</h3>
          <div class="line"></div>
          <p class="back"><a href="{{ "/" | relLangURL }}">Go back home</a></p>
        </div>
      </div>
    </div>
  </section>
{{ end }}