aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2023-03-23 11:14:28 -0500
committerMichael Hunteman <michael@huntm.net>2023-03-23 17:33:48 -0500
commit9de9c85ce46485cb19c0b9c5f4a03316b41f6050 (patch)
tree475b45fecc0bb1bc1dba3528ba90ff7d1119c905 /layouts/_default
parent5c798428deed78703ec2ff76cc3f85bc5c0b68ab (diff)
list.html: change format
Diffstat (limited to 'layouts/_default')
-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>