summaryrefslogtreecommitdiffstats
path: root/layouts/blog/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/blog/list.html')
-rw-r--r--layouts/blog/list.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/layouts/blog/list.html b/layouts/blog/list.html
index ddf5c64..1bdcfef 100644
--- a/layouts/blog/list.html
+++ b/layouts/blog/list.html
@@ -1,14 +1,15 @@
{{ define "main" }}
<header class="blog__header">
- <a href="/">/~/</a>: blog
+ <a href="/">/~/</a>blog/
</header>
<article>
<ul class="posts">
{{ $pages := .Pages }}
{{ range $pages }}
<li class="post">
+ <b>{{ .Date.Format "2006.01.02" }}</b>/
<a class="post__link" href="{{ .RelPermalink }}">
- /{{ .Date.Format "2006.01.02" }}/: {{ .Title }}
+ {{ .Title }}
</a>
</li>
{{ end }}