mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-25 21:21:22 +03:00

- Update the skeleton structure to match the new template system. - Add a --format flag to the `hugo new theme` command to control the format of the site configuration and default archetype files. - Remove theme.toml. This file's presence can be confusing for new users, and the README in the themes repository already has an example. - Remove the LICENSE and README files from the skeleton. These files are not needed for a theme to work, and they can be added later by the user if desired. Closes #13489 Closes #13544
23 lines
554 B
HTML
23 lines
554 B
HTML
{{- /*
|
|
For a given taxonomy, renders a list of terms assigned to the page.
|
|
|
|
@context {page} page The current page.
|
|
@context {string} taxonomy The taxonomy.
|
|
|
|
@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 }}
|