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

li.html « blog « partials « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36e7830bd2f22e4d328a7663345cd03f38fc3955 (plain)
1
2
3
4
5
6
{{ range .Pages.ByPublishDate.Reverse }}
<li class="post-item">
    <span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>{{ if .Params.date }} -
    <span>{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}</span>{{ end }}
</li>
{{ end }}