diff options
author | Alan Pearce | 2018-06-17 19:23:18 +0200 |
---|---|---|
committer | Alan Pearce | 2018-06-17 19:23:18 +0200 |
commit | 743253f995d352f51fc7b7681948b20c79609060 (patch) | |
tree | e7992e69cff8aabd1f8c3e571a74d6ecbb130477 /layouts/_default/list.html | |
parent | 61b24805867fc6d2aa67ede189d43faf86220ad4 (diff) | |
parent | 8cab2d27e2b7727e632d817dbdd41a97cc99af00 (diff) | |
download | hyde-743253f995d352f51fc7b7681948b20c79609060.tar.lz hyde-743253f995d352f51fc7b7681948b20c79609060.tar.zst hyde-743253f995d352f51fc7b7681948b20c79609060.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r-- | layouts/_default/list.html | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 6aa2a7d..cae4c08 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,16 +1,11 @@ -{{ partial "head.html" . }} - <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}"> - <main class="content container" role="main"> - <h1 class="page-title">{{ .Title }}</h1> - <ul class="posts"> - {{ range .Data.Pages }} - <li> - <a class="post-title u-url" href="{{ .RelPermalink | replaceRE "/$" "" }}">{{ .Title }}</a> - <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> - </li> - {{ end }} - </ul> - </main> -{{ partial "sidebar.html" . }} - </body> -</html> +{{ define "main" -}} +<h1 class="page-title">{{ .Title }}</h1> +<ul class="posts"> +{{ range .Data.Pages -}} + <li> + <a class="post-title u-url" href="{{ .RelPermalink }}">{{ .Title }}</a> + <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> + </li> +{{- end }} +</ul> +{{- end }} |