]> njoseph.me Git - hyde.git/blame - layouts/_default/list.html
Added an option change the theme globally in the configs
[hyde.git] / layouts / _default / list.html
CommitLineData
e1a4df05 1{{ partial "head.html" . }}
00eb7169 2<body class="{{ .Site.Params.themeColor }}">
da66ac19 3
e1a4df05 4{{ partial "sidebar.html" . }}
da66ac19 5
9bd0f367
GB
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>
da66ac19 16</html>