--- title: now linktitle: now description: Returns the current local time as a [`time.Time`] godocref: https://godoc.org/time#Time date: 2017-02-01 publishdate: 2017-02-01 lastmod: 2017-02-01 categories: [functions] tags: [dates,time] ns: signature: ["now"] workson: [] hugoversion: relatedfuncs: [Unix,dateFormat] deprecated: false aliases: [] needsexamples: true --- `now` returns the current local time as a [`time.Time`](https://godoc.org/time#Time). For example, building your site on June 24, 2017 with the following templating: ```html ``` Which will produce the following: ```html ``` The above example also uses the [`.Format` function](/functions/format), which page includes a full listing of date formatting using Golang's layout string. {{% note %}} Older Hugo themes may use the deprecated `.Now` (uppercase). Be sure to use the lowercase `.now` in your templating. {{% /note %}}