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

list.html « blog « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95085c5502b3b5ce2ba85a6a40122bf5eb3ebf8c (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
{{ define "main" }}
    <div class="container markdown top-pad">
        {{ .Content }}
    </div>
    <div class="container">
        {{ if .Site.Params.home.showLatest | default true }}
        <h2 class="title is-2 top-pad">{{ i18n "index_blog_latestPosts" . }}</h2>
        {{ range first 1 .Pages.ByPublishDate.Reverse }}
        <div class="summary">{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}{{ end }}
            <h3 class="title is-3 strong-post-title">
                <a href="{{ .Permalink }}">
                    {{ .Title | markdownify }}
                </a>
            </h3>
            <div class="markdown">
                {{ .Summary }}
                {{ if .Truncated }}
                <a href="{{ .Permalink }}">{{ i18n "index_blog_readMore" . }}</a>
                {{ end }}
            </div>
        </div>
        {{ end }}

        {{ end }}
        <h2 class="title is-2 top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
        {{ partialCached "blog/li.html" . }}
    </div>
{{ end }}