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

404.html « layouts - github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03426151510501a0156c22850278536fea6e9acf (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
<!-- 404 page -->

{{ partial "header.html" . }}

<div id="main">
  <div id="content">
    <div>
      <article role="article">
        <header>
          <h1 class="entry-title">
            {{ with .Site.Params.notFoundHeader }}
              {{ . | markdownify }}
            {{ else }}
              Not Found
            {{ end }}
          </h1>
        </header>
        <div id="blog-archives" class="category">
          {{ with .Site.Params.notFoundText }}
            {{ . | markdownify }}
          {{ else }}
            Please either go back or use the navigation/sidebar menus.
          {{ end }}
        </div>
      </article>
    </div>
    {{ partial "sidebar.html" . }}
  </div>
</div>
{{ partial "footer.html" . }}