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

blog-post-list.html « partials « layouts - github.com/zwbetz-gh/cayman-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afc39fdf75fae3b1fc3c373d57c1ff31fea4a8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<h1>{{ .Title }}</h1>
<ul>
{{ range where site.RegularPages "Type" "in" site.Params.mainSections }}
  <li>
    {{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
    {{ .PublishDate.Format $dateFormat }}
    <a href="{{ .Permalink }}">
      {{ .Title }}
    </a>
  </li>        
{{ end }}
</ul>