pi-www-theme-soho/layouts/index.html

13 lines
290 B
HTML

{{ define "main" -}}
<div class="posts">
{{ range .Data.Pages -}}
<div class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
{{- end }}
</div>
{{- end }}