2017-08-10 11:18:22 -04:00
|
|
|
|
---
|
|
|
|
|
title: now
|
|
|
|
|
linktitle: now
|
|
|
|
|
description: Returns the current local time
|
|
|
|
|
godocref: https://godoc.org/time#Time
|
|
|
|
|
date: 2017-02-01
|
|
|
|
|
publishdate: 2017-02-01
|
|
|
|
|
lastmod: 2017-04-30
|
|
|
|
|
categories: [functions]
|
|
|
|
|
menu:
|
|
|
|
|
docs:
|
|
|
|
|
parent: "functions"
|
2017-09-21 13:03:00 -04:00
|
|
|
|
keywords: [dates,time]
|
2017-08-10 11:18:22 -04:00
|
|
|
|
signature: ["now"]
|
|
|
|
|
workson: []
|
|
|
|
|
hugoversion:
|
|
|
|
|
relatedfuncs: [Unix,dateFormat]
|
|
|
|
|
deprecated: false
|
|
|
|
|
aliases: []
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
See [`time.Time`](https://godoc.org/time#Time).
|
|
|
|
|
|
2018-05-04 03:44:21 -04:00
|
|
|
|
For example, building your site on June 24, 2017, with the following templating:
|
2017-08-10 11:18:22 -04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
<div>
|
|
|
|
|
<small>© {{ now.Format "2006"}}</small>
|
|
|
|
|
</div>
|
|
|
|
|
```
|
|
|
|
|
|
2018-05-04 03:44:21 -04:00
|
|
|
|
would produce the following:
|
2017-08-10 11:18:22 -04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
<div>
|
|
|
|
|
<small>© 2017</small>
|
|
|
|
|
</div>
|
|
|
|
|
```
|
|
|
|
|
|
2018-06-11 16:31:02 -04:00
|
|
|
|
The above example uses the [`.Format` function](/functions/format), which page includes a full listing of date formatting using Go's layout string.
|
2017-08-10 11:18:22 -04:00
|
|
|
|
|
|
|
|
|
{{% note %}}
|
2018-05-04 03:44:21 -04:00
|
|
|
|
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.
|
2017-08-10 11:18:22 -04:00
|
|
|
|
{{% /note %}}
|