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

terms.html « _default « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96e742a5722ccd2d4df86fe7d3b228ba750714b3 (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
41

{{ partial "html-start.html" . }}

{{ partial "head.html" . }}

<body class="page-colors minimum-viewport-height">
    {{ partial "main-menu.html" . }}

    <div class="main-content">
        <div class="center-space">
            <div class="article-colors article-shadow">
                <article>
                    <header>
                        <h2 class="article-title">{{ .Title }}</h2>
                    </header>

                    <hr>

                    <section>
                        <h5>
                            <ul class="columns columns-responsive">
                                {{ $baseUrl := .Site.BaseURL }}
                                {{ $data := .Data }}
                                {{ range $key, $value := .Data.Terms.Alphabetical }}
                                    <li>
                                        <a href="{{ $baseUrl}}{{ $data.Plural }}/{{ $value.Name | urlize }}">{{ $value.Name }}</a> {{ $value.Count }}
                                    </li>
                                {{ end }}
                            </ul>
                        </h5>
                    </section>
                </article>
            </div>
        </div>
    </div>

    {{ partial "js.html" . }}
</body>

{{ partial "html-end.html" . }}