aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/polaris/layouts/partials/posts.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/polaris/layouts/partials/posts.html')
-rw-r--r--themes/polaris/layouts/partials/posts.html11
1 files changed, 4 insertions, 7 deletions
diff --git a/themes/polaris/layouts/partials/posts.html b/themes/polaris/layouts/partials/posts.html
index 7fd87de..f641d16 100644
--- a/themes/polaris/layouts/partials/posts.html
+++ b/themes/polaris/layouts/partials/posts.html
@@ -2,16 +2,13 @@
{{ $pagesLen := (len $pages) }}
{{ if eq $pagesLen 0 }}
-<p>It sure is quiet around here.</p>
+<p>There's nothing here!</p>
{{ end }}
{{ range $index, $element := $pages }}
-<article>
- <header>
- <h3><a href = "{{ .Permalink }}">{{ .Title }}</a></h3>
- </header>
- <p><em>{{ .Date | time.Format "Jan 02 2006" }}</em></p>
-</article>
+<ul>
+ <li><a href = "{{ .Permalink }}">{{ .Title }}</a> ({{ .Date | time.Format "Jan 02 2006" }})</li>
+</ul>
{{ if ne (add $index 1) $pagesLen }}
<hr>
{{ end }}