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

post-list.html « partials « layouts - gitlab.com/rmaguiar/hugo-theme-color-your-world.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 732bc9c6b3981bb6ba43dba4cda400d45291cbda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}

<ul class="posts">
  {{ range $paginator.Pages }}
  
    {{ $pageDate := "" }}
    
    {{ if not .Date.IsZero }}
      {{ $pageDate = .Date.Format "2006-01-02" }}
    {{ end }}

    <li>
      <a class="btn" href="{{ .RelPermalink }}" title="{{ .LinkTitle }}{{ with $pageDate }}{{ printf " (%s)" . }}{{ end }}">
        <p>{{ .LinkTitle | emojify }}</p>

        {{ with $pageDate }}
          <time datetime="{{ . }}">{{ . }}</time>
        {{ end }}
      </a>
    </li>
  {{ end }}
</ul>