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: e72f1cdc29941b82809c8970b9ed939ff19f0d89 (plain)
1
2
3
4
5
{{ 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 "Jan 02, 2006") }}</span>{{ end }}
    </li>
{{ end }}