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

post-list.html « partials « layouts - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 794c90fcef674c7c5be7cc967181ca52735317e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ $paginator := .Paginate (where .Site.RegularPages.ByDate.Reverse "Type" "post") }}
{{ range $paginator.Pages }}
<article class="post post--preview">
    <header>
        <h2 class="post__title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
    </header>
    <footer class="post__meta">
        <ul class="post__meta__infos">
            <li class="post-meta__date"><time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "02 January 2006" }}</time></li>
        </ul>
        {{ partial "post-taxonomies" . }}
    </footer>
</article>
{{ end }}