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

recentposts.html « footer « partials « layouts - github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1842b3b22b302007e7981ec3c7c68531ebe0d887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="8u 12u(mobile)">
    <section>
        {{ with index .Site.Data.footer.content.sections 0 }}
        <header>
            <h2>{{ .title }}</h2>
        </header>
        {{ end }}
        <ul class="dates">
            {{ range first 5 (where .Site.Pages "Type" .Site.Params.Blog.foldername) }}
            <li>
                <span class="date">{{ .Date.Format "Jan" }} <strong>{{ .Date.Format "_2" }}</strong></span>
                <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
                <p>{{ .Description }}</p>
            </li>
            {{ end }}
        </ul>
    </section>
</div>