commit 62ac46a2955d59080cbde8d5c73c16502bfa670f parent 11d59ffa1bf94386196d85c05ee0eaabe76f7f96 Author: Luke Smith <luke@lukesmith.xyz> Date: Thu, 26 Jan 2023 15:39:26 +0000 Merge pull request #16 from Dreded/master Some Fixes Diffstat:
| M | config.toml | | | 12 | +++++++++++- |
| M | layouts/_default/list.html | | | 17 | ++++++++++------- |
2 files changed, 21 insertions(+), 8 deletions(-)
diff --git a/config.toml b/config.toml @@ -4,5 +4,14 @@ languageCode = 'en-us' [params] # "relatedtext" is the text that appears above the tag list at the bottom of pages. - #relatedtext = "Related:" + relatedtext = "Related" favicon = "/favicon.ico" + + #list items + datesinlist = true + authorsinlist = true + + #footer items + nextprev = true + taglist = true + showrss = true +\ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html @@ -5,13 +5,16 @@ {{ .Content }} <ul> {{- range.Pages }} - <li> - {{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end -}} - <a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{- if .Param "authorsinlist" }} - {{- range .Param "authors" }} by {{ . }}{{ end -}} - {{ end -}} - </li> +<li> + {{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end -}} + <a href="{{ .RelPermalink }}">{{ .Title }}</a> + {{- if .Param "authorsinlist" }} + {{ with .Params.authors }} + by + {{ delimit . ", " " and " }} + {{end}} + {{ end -}} +</li> {{- end }} </ul> {{- end }}