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" . }}
|
||||
<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>
|
||||
|
|
Loading…
Reference in a new issue