list.html 341 B

1234567891011121314151617181920
  1. {{ define "main" }}
  2. <div class="container list page">
  3. <article>
  4. <h1>{{ .Title }}</h1>
  5. {{ .Content }}
  6. {{ range .Pages.Reverse }}
  7. {{ if (lt .Date now) }}
  8. <h3><a href="{{ .Permalink }}">{{ .Title }} - {{ .Date.Format "2006-01-02" }}</a></h3>
  9. {{ end}}
  10. {{ end }}
  11. </article>
  12. </div>
  13. {{ end }}