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.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/layouts/_default/taxonomy.html b/docs/layouts/_default/taxonomy.html
new file mode 100644
index 000000000..603f6b583
--- /dev/null
+++ b/docs/layouts/_default/taxonomy.html
@@ -0,0 +1,23 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ {{ partial "head" . }}
+ </head>
+ <body class="d-flex flex-column min-vh-100">
+ {{ partialCached "skippy" . }}
+ {{ partialCached "navbar" . }}
+
+ <main class="my-auto p-5" id="content">
+ <ul>
+ {{ range .Pages }}
+ <li>
+ <a href="{{ .Permalink }}">{{ .Title }}</a>
+ </li>
+ {{ end }}
+ </ul>
+ </main>
+
+ {{- partialCached "footer" . }}
+ {{- partialCached "scripts" . "default" }}
+ </body>
+</html>