about summary refs log tree commit diff stats
path: root/layouts/_default
diff options
context:
space:
mode:
authorGlen Baker2014-08-23 22:46:02 -0700
committerspf132014-09-08 12:11:25 -0400
commit9bd0f367e2a2c911ea896b9ddcc85252e0156f99 (patch)
tree73921e3c64efa710bc3a39cc845006691bcdccc0 /layouts/_default
parent17a69ee6307a643777a851b31fd5b498e200aa76 (diff)
downloadhyde-9bd0f367e2a2c911ea896b9ddcc85252e0156f99.tar.lz
hyde-9bd0f367e2a2c911ea896b9ddcc85252e0156f99.tar.zst
hyde-9bd0f367e2a2c911ea896b9ddcc85252e0156f99.zip
Removed extra unused html tags from list template, h4 and unused span
Conflicts:
	layouts/_default/list.html
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/list.html21
1 files changed, 11 insertions, 10 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index f93e73b..b911013 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -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>