From e7a91af6b5fffe7c9d845123c6c2fcfd73d9b02f Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 25 Nov 2021 11:54:39 +0100 Subject: Update theme to show post list on top level again --- themes/hugo-classic/layouts/_default/single.html | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 themes/hugo-classic/layouts/_default/single.html (limited to 'themes/hugo-classic/layouts/_default/single.html') diff --git a/themes/hugo-classic/layouts/_default/single.html b/themes/hugo-classic/layouts/_default/single.html deleted file mode 100644 index b3b5570..0000000 --- a/themes/hugo-classic/layouts/_default/single.html +++ /dev/null @@ -1,23 +0,0 @@ -{{ partial "header.html" . }} -
-

{{ .Title }}

-{{ with .Params.author }}

{{ . }}

{{ end }} -{{ if .Params.date }}

{{ .Date.Format "2006/01/02" }}

{{ end }} -

- {{ range $i := (slice "categories" "tags") }} - {{ with ($.Param $i) }} - {{ $i | title }}: {{ range $k := . }}{{$k}} {{ end }} - {{ end }} - {{ end }} -

-
- -{{ if .Params.toc }} -{{ .TableOfContents }} -{{ end }} - -
-{{ .Content }} -
- -{{ partial "footer.html" . }} -- cgit