summaryrefslogtreecommitdiffstats
path: root/examples/blog/layouts/categories/list.html
blob: 0390d77c2fd458fbdd3983b68524bab18635ece6 (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
{{ partial "header.html" . }}

<body>
    {{ partial "navbar.html" . }}
    <div class="container">
        <div class="row">
            <div class="col-md-9">
                <div class="well well-sm">
                    <strong>Items in category <code>{{ .Title | lower }}</code></strong>
                    <ul class="list-unstyled">
                        {{ range .Data.Pages }}
                        {{ .Render "li" }}
                        {{ end}}
                    </ul>
                </div>
            </div>

            <!-- Sidebar -->
            <div class="col-md-3">
                {{ partial "menu.html" . }}
            </div>
        </div>
        {{ partial "footer.copyright.html" . }}
    </div>
    {{ partial "footer.html" . }}