extroonie.com/layouts/_default/taxonomy.html

20 lines
358 B
HTML
Raw Permalink Normal View History

2025-08-11 04:38:11 +06:00
{{ define "main" }}
<div class="layout">
<h1>{{ .Title }}</h1>
{{ if .Content }}
<div class="content">{{ .Content }}</div>
{{ end }}
<ul>
{{ range .Pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ if .Date }}
<span class="date">{{ .Date.Format "2006-01-02" }}</span>
{{ end }}
</li>
{{ end }}
</ul>
</div>
{{ end }}