mirror of
https://github.com/rottenwheel/rottentheme.git
synced 2024-11-25 11:02:27 +00:00
11 lines
254 B
HTML
11 lines
254 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
<ul class="list">
|
|
{{- range where .Site.RegularPages "Section" "posts"}}
|
|
<li>
|
|
<span>{{ .Date.Format "2006-01-02" }}</span>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
</li>
|
|
{{- end }}
|
|
</ul>
|
|
{{ end }}
|