Skip to content

Instantly share code, notes, and snippets.

@zourite
Last active April 11, 2020 20:37
Show Gist options
  • Save zourite/8fa728b4a81bc0b57844a323e305ba32 to your computer and use it in GitHub Desktop.
Save zourite/8fa728b4a81bc0b57844a323e305ba32 to your computer and use it in GitHub Desktop.
French Date for Hugo
<time class="published" datetime="{{ .Date }}">
<!-- {{ default (i18n "date_format") | .Date.Format }} -->
{{ .Date.Day }} {{ index $.Site.Data.months $.Site.Language.Lang (printf "%d" .Date.Month) }} {{ .Date.Year }}
</time>
[fr]
1 = "janvier"
2 = "février"
3 = "mars"
4 = "avril"
5 = "mai"
6 = "juin"
7 = "juillet"
8 = "août"
9 = "septembre"
10 = "octobre"
11 = "novembre"
12 = "décembre"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment