msfjarvis.dev/layouts/_default/list.html
Glen Baker 9bd0f367e2 Removed extra unused html tags from list template, h4 and unused span
Conflicts:
	layouts/_default/list.html
2014-09-08 12:11:25 -04:00

17 lines
418 B
HTML

{{ template "theme/partials/head.html" . }}
<body>
{{ template "theme/partials/sidebar.html" . }}
<div class="content container">
<ul class="posts">
{{ range .Data.Pages }}
<li>
<span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>
</li>
{{ end }}
</ul>
</div>
</body>
</html>