diff --git a/test/site/themes/bare_min/layouts/_default/li.html b/test/site/themes/bare_min/layouts/_default/li.html
index 3141ccf..d096274 100644
--- a/test/site/themes/bare_min/layouts/_default/li.html
+++ b/test/site/themes/bare_min/layouts/_default/li.html
@@ -5,11 +5,8 @@
right-justified horizontal list of categories for that post.
(3) The contents of the description field in the metadata of the actual
markdown source of the post.
- -->
+-->
-
-
-
-
+ {{ .Title }}
{{ .Description }}
diff --git a/test/site/themes/bare_min/layouts/_default/list.html b/test/site/themes/bare_min/layouts/_default/list.html
index 2532ce1..9c5fee8 100644
--- a/test/site/themes/bare_min/layouts/_default/list.html
+++ b/test/site/themes/bare_min/layouts/_default/list.html
@@ -1,17 +1,11 @@
{{ define "main" }}
-
- Here are all my {{ .Type }}, in descending order by creation date.
-
+Posts with the {{ .Type | singularize }} ‘{{ .URL | replaceRE (printf "/%s/" .Type) "" | replaceRE "/" "" }}’
-
- {{ range .Data.Pages.GroupByDate "2006" }}
- {{ .Key }}
- {{ range .Pages }}
- {{ .Render "li" }}
- {{ end }}
+ {{ range .Pages }}
+ {{ .Render "li" }}
{{ end }}