Move paige_date_format to paige.date_format

This commit is contained in:
Will Faught
2022-12-18 02:30:00 -08:00
parent 024f30d8f5
commit 4a4feb5648
2 changed files with 2 additions and 2 deletions

View File

@@ -173,7 +173,6 @@ $ hugo server -D
Optional site parameters:
```yaml
paige_date_format: "2006 January 2" # Hugo date format for page dates
paige_hide_theme_comment: true # Don't put a link to this project in a code comment
paige_hide_theme_link: true # Don't put a link to this project in the footer
@@ -210,6 +209,7 @@ paige:
account_id: "123456"
utterances: # utteranc.es
github_repo: "example/foo"
date_format: "2006 January 2" # Hugo date format for page dates
```
If you set either `paige_hide_theme_comment` or `paige_hide_theme_link`, please credit this project in a post to help others find it.

View File

@@ -1,6 +1,6 @@
{{ with .PublishDate }}
{{ $format := ":date_long" }}
{{ with site.Params.paige_date_format }}
{{ with site.Params.paige.date_format }}
{{ $format = . }}
{{ end }}
<p class="text-center text-muted"><time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $format . }}</time></p>