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

list.html « _default « layouts - github.com/varkai/hugo-theme-zozo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbae4bb8a1339831186d707e0b4f30e21514e32e (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
{{ partial "head.html" . }}
<body>
<div class="main animated">
  {{ partial "header.html" . }}
  <div class="content">
    <div class="list_with_title">
      {{ range .Data.Pages.GroupByDate "2006" }}
      <div class="listing_title">{{ .Key }}</div>
      <div class="listing">
        {{ range .Pages }}
        <div class="listing_item">
          <div class="listing_post">
            <a href="{{ .Permalink }}">{{ .Title }}</a>
            <div class="post_time"><span class="date">{{ .Date.Format "01-02" }}</span></div>
          </div>
        </div>
        {{ end }}
      </div>
      {{ end }}
    </div>
    <div class="pagination"></div>
  </div>
  <a id="back_to_top" href="#" class="back_to_top"><span>△</span></a>
</div>
{{ partial "footer.html" . }}
{{ partial "js.html" . }}
</body>
</html>