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

category-posts.html « partials « layouts - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c89e9702ced39218328f44dfd3aa38fedcc1b6c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<div class="pl-sm-4 ml-sm-5 pt-2">
    <div class="row">
        <div class="col-12">
            {{ $recent := 7 }}
            {{ if .Site.Params.recent_posts }}
                {{ $recent = .Site.Params.recent_posts }}
            {{ end }}

            <div class="pb-3">
                <h5><span class="badge category">Recent</span></h5>
                <ul class="list-unstyled">
                    {{ range first $recent (where .Site.RegularPages "Type" "posts" ) }}
                    <li>
                        {{ .Date.Format "Jan 2 2006" }}
                        <a href="{{ .Permalink }}">{{ .Title }}</a>
                    </li>
                    {{ end }}
                </ul>
            </div>

            {{ range $key, $taxonomy := .Site.Taxonomies.categories.Alphabetical }}
            <div class="pb-3">
                <h5>
                    <span class="badge category text-capitalize">
                        {{ .Name | humanize }}
                    </span>
                </h5>
                <ul class="list-unstyled">
                    {{ range $taxonomy.Pages }}
                    <li>
                        {{ .Date.Format "Jan 2 2006" }}
                        <a href="{{ .Permalink }}">{{ .Title }}</a>
                    </li>
                    {{ end }}
                </ul>
            </div>
            {{ end }}
        </div>
    </div>
</div>