Fork of @spf13's port of Mdo's excellent theme to Hugo https://brendan.abolivier.bzh/

list.html 400B

123456789101112131415
  1. {{ template "theme/chrome/head.html" . }}
  2. <body>
  3. {{ template "theme/chrome/sidebar.html" . }}
  4. <div class="content container">
  5. <ul class="posts">
  6. {{ range .Data.Pages }}
  7. <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</h4></time></span></span></li>
  8. {{ end }}
  9. </ul>
  10. </div>
  11. </body>
  12. </html>