diff options
author | Glen Baker | 2014-08-23 22:46:02 -0700 |
---|---|---|
committer | spf13 | 2014-09-08 12:11:25 -0400 |
commit | 9bd0f367e2a2c911ea896b9ddcc85252e0156f99 (patch) | |
tree | 73921e3c64efa710bc3a39cc845006691bcdccc0 /layouts/_default | |
parent | 17a69ee6307a643777a851b31fd5b498e200aa76 (diff) | |
download | hyde-9bd0f367e2a2c911ea896b9ddcc85252e0156f99.tar.lz hyde-9bd0f367e2a2c911ea896b9ddcc85252e0156f99.tar.zst hyde-9bd0f367e2a2c911ea896b9ddcc85252e0156f99.zip |
Removed extra unused html tags from list template, h4 and unused span
Conflicts: layouts/_default/list.html
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/list.html | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index f93e73b..b911013 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,15 +1,16 @@ {{ template "theme/partials/head.html" . }} <body> -{{ template "theme/partials/sidebar.html" . }} + {{ template "theme/partials/sidebar.html" . }} - <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> - {{ end }} - </ul> - </div> - - </body> + <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" }}</time></span> + </li> + {{ end }} + </ul> + </div> +</body> </html> |