list.html 557 B

12345678910111213141516171819202122232425262728
  1. {{ define "main" }}
  2. {{- partial "header.html" . -}}
  3. <div class="container list page">
  4. <article>
  5. <h1>{{ .Title }}</h1>
  6. {{ .Content }}
  7. <ol>
  8. {{ range .Pages.Reverse }}
  9. {{ if (or (lt .Date now) (eq ( .Site.Params.ShowFuture ) "TRUE") ) }}
  10. <li>
  11. <a href="{{.Permalink}}">{{ .Title }}</a><span class="date"> - {{ .Date.Format "2006-01-02" }}</span>
  12. </li>
  13. {{ end}}
  14. {{ end }}
  15. </ol>
  16. {{- partial "footer.html" . -}}
  17. </article>
  18. </div>
  19. {{ end }}