now
少于1分钟
将以下英文翻译为中文:
now
https://gohugo.io/functions/now/
Returns the current local time
语法
now
See time.Time.
For example, building your site on June 24, 2017, with the following templating:
| |
would produce the following:
| |
The above example uses the .Format function, which page includes a full listing of date formatting using Go’s layout string.
Older Hugo themes may still be using the obsolete Page’s .Now (uppercase with leading dot), which causes build error that looks like the following:
ERROR ... Error while rendering "..." in "...": ...
executing "..." at <.Now.Format>:
can't evaluate field Now in type *hugolib.PageOutput
Be sure to use now (lowercase with no leading dot) in your templating.
另请参阅
最后修改 June 1, 2023: 新增一个配置参数:sidebar_menu_truncate = 500 用于解决菜单不全的问题 (27810f1)