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

taxonomy.html « _default « layouts - github.com/AmazingRise/hugo-theme-diary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed8110ae2123f07c5a731de576c4a3b38f85bb8a (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
{{ define "main" }}

    <div class="post-list-container post-list-container-shadow">
        <div class="post-item-wrapper post-item-wrapper-no-hover">
            <div class="post-item post-item-no-gaps">
                <div class="post-item-info-wrapper">
                    <div class="post-item-title  post-item-title-small">
                        <a href="{{ .Parent.Permalink }}">{{.Parent.Title}}</a> / {{ .Title }}
                    </div>
                </div>
            </div>
        </div>
        {{- range .Paginator.Pages -}}
        <a href="{{ .RelPermalink }}" class="a-block">
            <div class="post-item-wrapper">
                <div class="post-item post-item-no-gaps">
                    <div class="post-item-info-wrapper">
                        <div class="post-item-title">
                            {{.Title}}
                        </div>
                        {{ partial "post-item-meta.html" . }}
                    </div>
                </div>
            </div>
        </a>
        {{- end -}}
    </div>

{{ end }}