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

single.html « archives « layouts - github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728e6286763984e8679efba20ad59a681309d18d (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
{{ define "main" }}
{{ partial "post-header.html" . }}
<section class="section">
  <div class="container content">
    <div class="columns">
      <div class="column is-8 is-offset-2">
        <div class="post-archive">
          {{ range (where (where .Site.Pages "Type" "post") "Kind" "page").GroupByDate "2006" }}
          <div class="box container">
            <h3>{{ .Key }}
            <span class="tag is-medium is-pulled-right">
              {{ len .Pages }}
            </span>
            </h3>
            <ul class="listing">
              {{ range .Pages }}
              <li>
                <span class="date">{{ .Date.Format "2006/01/02" }} </span>
                <a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
              </li>
              {{ end }}
            </ul>
          </div>
          {{ end }}
        </div>
      </div>
    </div>
  </div>
</section>
{{ end }}