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
1 changed files with 11 additions and 10 deletions

View File

@ -1,15 +1,16 @@
{{ template "theme/partials/head.html" . }}
<body>
{{ template "theme/partials/sidebar.html" . }}
{{ 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" }}</h4></time></span></span></li>
{{ end }}
</ul>
</div>
</body>
<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>