maypop-vanilla-theme/layouts/index.html

12 lines
243 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
{{ .Content }}
Available modules:
<ul class="post-list">
2021-05-31 22:33:35 -07:00
{{ range (where (where .Site.Pages.ByDate.Reverse "Section" "modules") ".Kind" "!=" "section") }}
{{ partial "post.html" . }}
{{ end }}
</ul>
{{ end }}