diff options
author | Alan Pearce | 2014-06-07 18:10:44 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-07 18:10:44 +0100 |
commit | c41faa575031c62816ddcdb3e64358e31c07e159 (patch) | |
tree | f5a66f4a601abc1ab5eb8a551b492bdc9e885cc2 /layouts/_default/list.html | |
parent | ed66d3d3bd6cef2d6b2e43f4237f76f60ce1250e (diff) | |
download | hyde-c41faa575031c62816ddcdb3e64358e31c07e159.tar.lz hyde-c41faa575031c62816ddcdb3e64358e31c07e159.tar.zst hyde-c41faa575031c62816ddcdb3e64358e31c07e159.zip |
Remove unnecessary <span>
Diffstat (limited to 'layouts/_default/list.html')
-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 d3a63cb..992d49a 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -3,7 +3,7 @@ <main class="content container" role="main"> <ul class="posts"> {{ range .Data.Pages }} - <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span></li> + <li><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></li> {{ end }} </ul> </main> |