Removed extra unused html tags from list template, h4 and unused span
Conflicts: layouts/_default/list.html
This commit is contained in:
parent
17a69ee630
commit
9bd0f367e2
1 changed files with 11 additions and 10 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue