summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/tags.html')
-rw-r--r--docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/tags.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/tags.html b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/tags.html
new file mode 100644
index 000000000..59e3e51a0
--- /dev/null
+++ b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/tags.html
@@ -0,0 +1,37 @@
+{{ $currentPageUrl := .RelPermalink }}
+{{ if and .Params.tags .Site.Taxonomies.tags }}
+ {{ $name := index .Params.tags 0 }}
+ {{ $name := $name | urlize }}
+ {{ $tags := index .Site.Taxonomies.tags $name }}
+
+ <div class="nested-lh-copy">
+ <ul class="list dib nested-links ml0 pl0">
+ {{ with .Params.tags }}
+ <li class="db mb2 b">
+ Tags:
+ </li>
+ {{ range .}}
+ <li class="db dib-l mr3">
+ <a class="tag" href="/tags/{{ .|urlize }}">
+ {{ . }}
+ </a>
+ </li>
+ {{ end }}
+ {{ end }}
+ {{ range $i, $e := $tags.Pages }}
+ {{ if eq $i 1 }}
+ <li class="db b mt4 mb2 mr2">
+ Related entries:
+ </li>
+ {{ end }}
+ {{ if ne .RelPermalink $currentPageUrl }}
+ <li class="db dib-l mb2 mr3">
+ <a href="{{ .RelPermalink }}" class="link">
+ {{ .LinkTitle }}
+ </a>
+ </li>
+ {{ end }}
+ {{end}}
+ </ul>
+ </div>
+{{end}}