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

section.html « post « layouts - github.com/iCyris/hugo-theme-yuki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18415ba86051fa99e7b2f7c306d3b517500e809e (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
{{ partial "header.html" . }}

<div class="main-content">
    {{ $baseurl := .Site.BaseURL | sanitizeurl }}
    <div class="main-content__title title-type__custom u-font">
        <h1 id="title">Blog posts</h1>
    </div>

    <article>
        <div class="main-content__posts index-posts">
            <div class="index-posts">
                {{ $posts := where site.RegularPages "Type" "in" site.Params.mainSections }}
                {{ range (.Paginate $posts).Pages }}
                <div class="index-posts__list">
                    <div class="l-time"><a href="{{.Permalink}}">{{ .Date.Format "2006.01.02 15:04" }}</a></div>
                    <div class="l-title"><a href="{{.Permalink}}">{{.Title}}</a></div>
                </div>
                {{ end }}
            </div>

            <div class="index-paginate">
                {{ partial "pagination.html" . }}
            </div>
        </div>
    </article>
</div>

{{ partial "footer.html" . }}