w2ng/themes/hugo-w2ng/layouts/_default/list.html
2020-01-08 22:49:17 +08:00

15 lines
384 B
HTML

{{ define "main" }}
<div class="max-w-3xl mx-auto leading-relaxed my-6">
<div class="markdown mb-12">
{{ .Content }}
</div>
{{- $pctx := . -}}
{{ range .RegularPages }}
{{ if (eq $pctx.Kind "taxonomy") }}
{{ .Scratch.Set "taxonomy" (add $pctx.Type $pctx.Title) }}
{{ end }}
{{ .Render "summary"}}
{{ end }}
</div>
{{ end }}