Removed extra unused html tags from list template, h4 and unused span

Conflicts:
	layouts/_default/list.html
This commit is contained in:
Glen Baker 2014-08-23 22:46:02 -07:00 committed by spf13
parent 17a69ee630
commit 9bd0f367e2

View file

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