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.

43 line
903B

  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. {{ $prev := 3000}}
  13. {{range .Site.RegularPages}}
  14. {{if .Date}}
  15. {{if gt $prev (.Date.Format "2006")}}
  16. {{ if ne $prev 3000}}
  17. </tbody>
  18. </table>
  19. {{ end }}
  20. <table class="all-posts">
  21. <col width="15%">
  22. <col width="85%">
  23. <thead>
  24. <tr><td></td><td>{{ .Date.Format "2006" }}</td></tr>
  25. </thead>
  26. <tbody>
  27. {{end}}
  28. <tr>
  29. <th>{{.Date.Format "02 Jan"}}</th>
  30. <td><a href="{{.Permalink}}">{{.Title}}</a></td>
  31. </tr>
  32. {{ $prev = .Date.Format "2006"}}
  33. {{end}}
  34. {{end}}
  35. </table>
  36. </section>
  37. {{ end }}
  38. {{ define "footer" }}
  39. {{ partial "powered-by.html" . }}
  40. {{ end }}