Files
hugo_it-services/layouts/taxonomy.html
T
Trez.One 5d32710ff4
Deploy Hugo Site / hugo-translations (push) Failing after 10s
Deploy Hugo Site / Check and Create PR (push) Successful in 17s
Whole refactor to accommodate Hugo >=0.146.0.
2025-07-25 10:50:48 -04:00

11 lines
246 B
HTML

<!-- layouts/_default/taxonomy.html -->
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Pages }}
<article>
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
<p>{{ .Summary }}</p>
</article>
{{ end }}
{{ end }}