2024-05-19 14:05:07 +08:00

11 lines
251 B
HTML

{{ define "main" }}
{{ .Content }}
<h1>Posts</h1>
{{ range .Site.RegularPages }}
{{ if eq .Section "post" }}
<h2><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
{{ end }}
{{ end }}
{{ end }}