blogamore/layouts/_default/taxonomy.html

11 lines
278 B
HTML
Raw Normal View History

{{ define "main" }}
<h1 class="mb-5">{{ .Title }}</h1>
{{ range .Pages.ByTitle }}
<article class="border-bottom">
<h3 class="mb-3">
<a href="{{ .RelPermalink | relURL }}">{{ .Title }}</a>
</h3>
<p>{{ .Description }}</p>
</article>
{{ end }}
{{ end }}