]> njoseph.me Git - hyde.git/commitdiff
Removed extra unused html tags from list template, h4 and unused span
authorGlen Baker <iepathos@gmail.com>
Sun, 24 Aug 2014 05:46:02 +0000 (22:46 -0700)
committerspf13 <steve.francia@gmail.com>
Mon, 8 Sep 2014 16:11:25 +0000 (12:11 -0400)
Conflicts:
layouts/_default/list.html

layouts/_default/list.html

index f93e73bfeda64ef1ce4a3986c377f878370b1232..b911013a95b3a1d3b3a3db53d486021edfbff186 100644 (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>