Added coming soon; refactored it to keep my CI working
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 36s

This commit is contained in:
2024-09-22 21:50:23 +02:00
parent c7b2573e15
commit 7003817c74
61 changed files with 289 additions and 1060 deletions

View File

@@ -1,23 +0,0 @@
{{- /*
For a given taxonomy, renders a list of terms assigned to the page.
@context {page} page The current page.
@context {string} taxonomy The taxonony.
@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
*/}}
{{- $page := .page }}
{{- $taxonomy := .taxonomy }}
{{- with $page.GetTerms $taxonomy }}
{{- $label := (index . 0).Parent.LinkTitle }}
<div>
<div>{{ $label }}:</div>
<ul>
{{- range . }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{- end }}
</ul>
</div>
{{- end }}