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

taxonomy.html « _default « layouts « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 273aa4a888a487512ad5913905d926e6809a7699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
  <nav aria-label="breadcrumb">
    <ol class="breadcrumb my-4 p-0">
      <li class="breadcrumb-item"><a href="/">Icons</a></li>
      <li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li>
    </ol>
  </nav>

  <h1 class="h2">All {{ .Type }}</h1>
  <ul style="column-count: 4;">
    {{ range .Data.Pages }}
      <li>
        <a href="{{ .Permalink }}">{{ .Title }}</a>
      </li>
    {{ end }}
  </ul>
{{ end }}