Fix theme being somehow in the wrong folder.

This commit is contained in:
2021-05-18 01:03:16 +01:00
parent 61647b8988
commit d50b217846
30 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{{ define "main" }}
{{if not .Page.Params.hidden}}
<article>
<h1>{{ .Title }}</h1>
<ul class="tags-list">
{{ range .Data.Terms.ByCount }}
<li class="tags-list-item">
{{ partial "icon.html" (dict "ctx" $ "name" "tag") }}
<a class="tags-list-item-title" href="{{ .Page.Permalink }}">
({{ .Count }})
{{ .Page.Title }}
</a>
</li>
{{ end }}
</ul>
</article>
{{ end }}
{{ end }}