Fork of @spf13's port of Mdo's excellent theme to Hugo https://brendan.abolivier.bzh/

12345678910111213
  1. {{ define "main" -}}
  2. <div class="posts">
  3. {{ range .Data.Pages -}}
  4. <div class="post">
  5. <h1 class="post-title">
  6. <a href="{{ .Permalink }}">{{ .Title }}</a>
  7. </h1>
  8. <span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
  9. {{ .Content }}
  10. </div>
  11. {{- end }}
  12. </div>
  13. {{- end }}