hugo-theme-hyde-hyde/layouts/index.html
2017-09-07 21:41:16 +02:00

13 lines
No EOL
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 }}