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

list.html 422B

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