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

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/layouts/_default/taxonomy.html')
-rw-r--r--docs/layouts/_default/taxonomy.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/layouts/_default/taxonomy.html b/docs/layouts/_default/taxonomy.html
new file mode 100644
index 000000000..273aa4a88
--- /dev/null
+++ b/docs/layouts/_default/taxonomy.html
@@ -0,0 +1,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 }}
+