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: bc5565d44f9daf40f69fa2de9bdf84382e88d763 (plain)
1
2
3
4
5
6
7
8
9
10
<h1>{{ .Title }}</h1>
<ul>
{{ range where .Pages.ByPublishDate.Reverse "Section" "post" }}
  <li>
    <a href="{{ .Permalink }}">
      {{ .Title }}
    </a>
  </li>        
{{ end }}
</ul>