]> njoseph.me Git - hyde.git/blame - layouts/_default/list.html
Removed extra unused html tags from list template, h4 and unused span
[hyde.git] / layouts / _default / list.html
CommitLineData
9989bda1 1{{ template "theme/partials/head.html" . }}
da66ac19 2<body>
3
9bd0f367 4 {{ template "theme/partials/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>