]> njoseph.me Git - hyde.git/blob - layouts/_default/list.html
Added an option change the theme globally in the configs
[hyde.git] / layouts / _default / list.html
1 {{ partial "head.html" . }}
2 <body class="{{ .Site.Params.themeColor }}">
3
4 {{ partial "sidebar.html" . }}
5
6 <div class="content container">
7 <ul class="posts">
8 {{ range .Data.Pages }}
9 <li>
10 <span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>
11 </li>
12 {{ end }}
13 </ul>
14 </div>
15 </body>
16 </html>