blog/layouts/index.html
2025-03-06 23:30:44 -05:00

14 lines
218 B
HTML

{{ define "main" }}
{{ .Content }}
{{ with .Site.RegularPages }}
<h2>Posts</h2>
<ul>
{{ range . }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ partial "tags.html" . }}
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}