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

404.html « layouts - github.com/nodejh/hugo-theme-cactus-plus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c108c0cf663b5b70746c54bfd1ce6b016a6f7e9 (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
32
33
34
35
36
37
38
39
40
{{ define "main" }}

<div id="page-404">
  <div class="text">
      {{ with .Site.Params.title404 }}
          <h1>{{ . }}</h1>
      {{ else }}
          <h1>404 - Page Not Found</h1>
      {{ end }}

      {{ with .Site.Params.subtitle404 }}
          <div>{{ . }}</div>
      {{ else }}
          <div>The content you're looking for doesn't seem to exist.</div>
      {{ end }}
    </div>

  {{ with .Site.Params.readMore }}
      <h2 class="read-more">{{ . }}</h2> 
  {{ else }}
      <h2 class="read-more">Read More</h2> 
  {{ end }}

  


    {{ $pages := .Site.RegularPages }}
    {{ $paginator := .Paginate ($pages) }}
    {{ range $paginator.Pages }}
        {{ $title := .Title }}
        {{ $date := dateFormat "Jan 2, 2006" .Date }}
        <section class="item">
          <div>
            <h1 class="title"><a href='{{ .RelPermalink }}'>{{ $title }}</a></h1>   
            <div class="date">{{ $date }}</div>
          </div>
        </section>
    {{ end }}
</div>
{{ end }}