-<h3>.Site.Taxonomies.tags</h3>
-<pre>{{ .Site.Taxonomies.tags }}</pre>
-{{- with .Page.Site.Taxonomies }}
-{{- range $taxonomy, $terms := . }}
-<h3>$taxonomy</h3>
-<div>Count: {{ $terms.size }}</div>
-<pre>{{ debug.Dump $taxonomy }}</pre>
-<h3>$terms</h3>
-<pre>{{ debug.Dump $terms }}</pre>
-{{- end }}
-{{- end }}
-
-{{- define "custom_css" }}
-<style>
-.terms-tags li {
- display: inline-block;
- margin: 10px;
- font-weight: 500;
-}
-
-.terms-tags a {
- display: block;
- padding: 3px 10px;
- background: var(--tertiary);
- border-radius: 6px;
- transition: transform 0.1s;
-}
-
-.terms-tags a:active {
- background: var(--tertiary);
- transform: scale(0.96);
-}
-</style>
-{{- end }}
+<ul>
+ {{ range .Page.Site.Taxonomies.tags }}
+ <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }}</li>
+ {{ end }}
+</ul>