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.

21 lines
362B

  1. <!DOCTYPE html>
  2. <html>
  3. {{ partial "head.html" . }}
  4. <body>
  5. {{ partial "page_header.html" . }}
  6. <h3>Posts</h3>
  7. <div>
  8. <!-- orders content according to the "publishdate" field in front matter -->
  9. {{ range .Pages.ByPublishDate }}
  10. {{ partial "listing.html" . }}
  11. {{ end }}
  12. </div>
  13. {{ partial "freshlyticsscript.html" . }}
  14. </body>
  15. </html>