about summary refs log tree commit diff
path: root/layouts/partials/postlist.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--layouts/partials/postlist.html22
1 files changed, 10 insertions, 12 deletions
diff --git a/layouts/partials/postlist.html b/layouts/partials/postlist.html
index 3d5cf04..575f0b8 100644
--- a/layouts/partials/postlist.html
+++ b/layouts/partials/postlist.html
@@ -1,12 +1,10 @@
-{{ range .GroupByDate "2006" }}
-  <h2>{{ .Key }}</h2>
-  <ul>
-    {{ range .Pages.ByDate.Reverse }}
-    <li>
-      <div>
-        <a href="{{ .Permalink }}">{{ .Title }}</a>
-      </div>
-    </li>
-    {{ end }}
-  </ul>
-{{ end }}
+<ul class="list-content">
+  {{ range .GroupByDate "2006" }}
+  {{ range .Pages.ByDate.Reverse }}
+  <li>
+    <span class="content-title"><strong><a href="{{ .Permalink }}">{{ .Title }}</a></strong></span>
+    <span class="content-date"><em>posted on {{ .Date.Format "Jan 2, 2006" }}</em></span>
+  </li>
+  {{ end }}
+  {{ end }}
+</ul>