accessible.tips/themes/hugo-xmin/layouts/_default/terms.html
KemoNine 5bb3087182 import yihui/hugo-xmin theme from https://github.com/yihui/hugo-xmin with the following branches merged
feature/github-edit
  feature/highlight.js
  feature/pagination
  feature/show-tags
  feature/show-toc
2023-03-18 12:15:46 -04:00

14 lines
239 B
HTML

{{ partial "header.html" . }}
<h1>{{ .Title }}</h1>
<ul class="terms">
{{ range .Data.Terms }}
<li>
<a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ .Count }})
</li>
{{ end }}
</ul>
{{ partial "footer.html" . }}