You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
586B

  1. {{ define "title" -}}
  2. Blog List | {{ .Site.Title }}
  3. {{- end }}
  4. {{ define "header" }}
  5. {{ partial "masthead.html" . }}
  6. {{ end }}
  7. {{ define "main" }}
  8. <header>
  9. <h1>{{ .Title }}</h1>
  10. </header>
  11. <section>
  12. <table class="all-posts">
  13. {{range .Site.RegularPages}}
  14. {{if .Date}}
  15. <tr>
  16. <td>{{.Date.Format "2006-01-02"}}</td>
  17. <td><a href="{{.Permalink}}">{{.Title}}</a></td>
  18. </tr>
  19. {{end}}
  20. {{end}}
  21. </table>
  22. </section>
  23. {{ end }}
  24. {{ define "footer" }}
  25. {{ partial "powered-by.html" . }}
  26. {{ partial "cookie-disclaimer.html" . }}
  27. {{ end }}