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

archive.html « blog « partials « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eaba40778edf84a3e6980817f3ea62c809b5614c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<section>
    {{ $prev := 2100}} <!--start at year 2100-->
    {{range .Pages.ByPublishDate.Reverse}}
      {{if .Date}}
      {{$curr := .Date.Format "2006"}}
        {{if gt $prev ($curr)}}
            <h2 class="title is-2 top-pad">{{ $curr }}</h2>
        {{end}}
      <li class="post-item">
        {{ if .Params.date }}
            <span>{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}</span> -
        {{ end }}
        <span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>
      </li>
        {{ $prev = $curr}}
      {{end}}
    {{end}}   
</section>