aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 03d3faf..4bc7238 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -4,7 +4,16 @@
<main>
<ul>
{{ range .Pages }}
- <li><a href="{{ .Permalink }}">{{.Date.Format "Jan 2, 2006"}} - {{ .Name }}</a></li>
+ <div class="post">
+ <h3>
+ <a href="{{ .Permalink }}">
+ {{ .Title }}
+ </a>
+ </h3>
+ <small>
+ {{.Date.Format "January 2, 2006"}}
+ </small>
+ </div>
{{ end }}
</ul>
</main>