hugo-theme-contentful/layouts/_default/terms.html
Gabriel Arazas aa67aa0932 Make minor adjustments to the theme
* Remove `hidden` as one of the content frontmatter.
* Adjust the post metadata output.
* Update the README.
2020-10-30 02:59:42 +08:00

25 lines
647 B
HTML

{{ define "main" }}
{{ .Content }}
<h1>{{ .Title }}</h1>
{{- range .Data.Terms }}
{{- $pages := .Pages }}
{{- if ge (len $pages) 1 }}
<header id="{{ .Page.Title | urlize }}" class="taxonomy__header">
<h2>{{ .Page.Title }}</h2>
<small>(<a href="{{ .Page.RelPermalink }}">{{ i18n "permalink" | default "Permalink" }}</a>)</small>
</header>
<ul class="taxonomy__pages">
{{- range $pages }}
<li class="taxonomy__page">
<date datetime="{{ .Date }}">{{ .Date.Format "2006-01-02" }}</date>
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
</li>
{{- end }}
</ul>
{{- end }}
{{- end }}
{{ end }}