diff options
| author | Nick Savage <nick.savage@gohenry.co.uk> | 2024-09-02 19:57:55 +0100 | 
|---|---|---|
| committer | Nick Savage <nick.savage@gohenry.co.uk> | 2024-09-02 19:57:55 +0100 | 
| commit | 368c529f1eb76aab856d7117f81811fdae672f4e (patch) | |
| tree | b6465dce40125a2b93228b97378080ac24207f8e /layouts/_default | |
| parent | 3c6711f6c3b0c2f8fe857414678d85fb3d1e06dc (diff) | |
Allow the date/time format on the single template to be overridden
Example:
```toml
[params]
singleDateFormat = '2 January 2006'
```
Diffstat (limited to 'layouts/_default')
| -rw-r--r-- | layouts/_default/single.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 8b01d4c..9282d4e 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -22,7 +22,7 @@      <p class="single-readtime">        {{ with .Date }}        {{ $dateMachine := . | time.Format "2006-01-02T15:04:05-07:00" }} -      {{ $dateHuman := . | time.Format ":date_long" }} +      {{ $dateHuman := . | time.Format (default ":date_long" $.Site.Params.singleDateFormat) }}        <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>        {{end}} @@ -88,4 +88,4 @@  </div> -{{ end }}
\ No newline at end of file +{{ end }} | 
