mirror of
https://github.com/skoelle/buildbroken-blog-archive.git
synced 2026-09-17 18:30:25 +00:00
12 lines
319 B
HTML
12 lines
319 B
HTML
{{ define "main" }}
|
|
{{ with .Content }}<div class="taxonomy-intro">{{ . }}</div>{{ end }}
|
|
<h2 class="archive-title">{{ .Title }}</h2>
|
|
<div class="post-list">
|
|
{{ range .Pages }}
|
|
<article class="post-teaser">
|
|
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
|
</article>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|