diff options
author | Alan Pearce | 2014-06-07 09:45:17 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-07 09:45:17 +0100 |
commit | 0fa287a3d34586fabac03c43b3c6e2535b80a561 (patch) | |
tree | 3eb8b3a3d27ff67f90e3c6107772e08ee67e7c75 /layouts/_default | |
parent | a1b20a1747032185e307eff62cf9d19f7311ff0f (diff) | |
download | hyde-0fa287a3d34586fabac03c43b3c6e2535b80a561.tar.lz hyde-0fa287a3d34586fabac03c43b3c6e2535b80a561.tar.zst hyde-0fa287a3d34586fabac03c43b3c6e2535b80a561.zip |
Remove unbalanced tags in list layout
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index f93e73b..d376d80 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -6,7 +6,7 @@ <div class="content container"> <ul class="posts"> {{ range .Data.Pages }} - <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</h4></time></span></span></li> + <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span></li> {{ end }} </ul> </div> |