summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:52:23 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:52:23 +0200
commitde8ca7e4d4313ce84f4c97bbdcea83f871f9e3c9 (patch)
tree6b55cf176030fbb5091f04a424674d3114db9ff1 /docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html
parentec5962278f394654fd17df35bbfceb19702553dd (diff)
parent5ac0f751aa47e52625662215f66efa99a6abfc2e (diff)
Diffstat (limited to 'docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html')
-rw-r--r--docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html
new file mode 100644
index 000000000..f6b566656
--- /dev/null
+++ b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/terms.html
@@ -0,0 +1,49 @@
+{{/* {{ define "header" }}{{ partial "page-header" . }}{{ end }} */}}
+{{ define "main" }}
+{{ $section_to_display := .Pages }}
+<div class="w-100 ph4 pb5 pb6-ns pt1 pt3-ns">
+
+ <div class="flex">
+ <div class="dn db-l w-20">
+ {{ partial "nav-links-docs.html" . }}
+ </div>
+
+ <div class="w-100 w-80-l ph0 ph4-l">
+ <article class="w-100 nested-copy-line-height nested-links nested-img">
+ <h1 class="primary-color-dark f2">
+ {{ .Title }}
+ </h1>
+ </article>
+ <div class="pa3 pa4-ns w-100 v-top column-count-3-l column-gap-1-l">
+ {{ range $key, $value := .Data.Terms }}
+ <div class="break-inside-avoid-l nested-copy-line-height mb5">
+ <h2 class="f3">
+ <a href="{{ "/" | relLangURL }}{{ $.Data.Plural | urlize }}/{{ $key | urlize }}" class="link black hover-blue">
+ {{ $key }} <span class="f6 gray"> &#8599;</span>
+ </a>
+ </h2>
+ {{ range $value.Pages }}
+ <h3>
+ <a href="{{ .Permalink }}" class="link blue">
+ {{ .Title }}
+ </a>
+ </h3>
+ {{ end }}
+ </div>
+
+ {{ end }}
+
+ </div>
+
+
+
+
+ </div>
+
+ </div>
+
+
+
+
+</div>
+{{ end }}