Back to Hugo

Weekday

docs/content/en/methods/time/Weekday.md

0.161.1314 B
Original Source

To convert the time.Weekday value to a string:

go-html-template
{{ $t := time.AsTime "2023-01-27T23:44:58-08:00" }}
{{ $t.Weekday.String }} → Friday

To convert the time.Weekday value to an integer.

go-html-template
{{ $t := time.AsTime "2023-01-27T23:44:58-08:00" }}
{{ $t.Weekday | int }} → 5