Browse Source

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

Conflicts:
	layouts/_default/list.html
Glen Baker 10 years ago
parent
commit
9bd0f367e2
1 changed files with 11 additions and 10 deletions
  1. 11
    10
      layouts/_default/list.html

+ 11
- 10
layouts/_default/list.html View File

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