mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
tpl/time: Re-add the time example
This commit is contained in:
parent
1f9e8dcc60
commit
a119ef693f
2 changed files with 9 additions and 4 deletions
|
@ -1439,12 +1439,10 @@
|
||||||
"Args": [
|
"Args": [
|
||||||
"v"
|
"v"
|
||||||
],
|
],
|
||||||
"Aliases": [
|
"Aliases": null,
|
||||||
"asTime"
|
|
||||||
],
|
|
||||||
"Examples": [
|
"Examples": [
|
||||||
[
|
[
|
||||||
"{{ (asTime \"2015-01-21\").Year }}",
|
"{{ (time \"2015-01-21\").Year }}",
|
||||||
"2015"
|
"2015"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
|
@ -58,6 +58,13 @@ func init() {
|
||||||
[][2]string{},
|
[][2]string{},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
ns.AddMethodMapping(ctx.AsTime,
|
||||||
|
nil,
|
||||||
|
[][2]string{
|
||||||
|
{`{{ (time "2015-01-21").Year }}`, `2015`},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
return ns
|
return ns
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue