Merge pull request #16 from Dreded/master

Some Fixes
This commit is contained in:
Luke Smith 2023-01-26 15:39:26 +00:00 committed by GitHub
commit 62ac46a295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 8 deletions

View File

@ -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

View File

@ -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> &ndash; {{ 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> &ndash; {{ end -}}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- if .Param "authorsinlist" }}
{{ with .Params.authors }}
by
{{ delimit . ", " " and " }}
{{end}}
{{ end -}}
</li>
{{- end }}
</ul>
{{- end }}