> ## Content Index
> Fetch the complete content index at: https://getpublii.com/dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# @utils global variable

- URL: https://getpublii.com/dev/utils-global-variable/
- Published: 2019-03-21T11:05:08.890Z
- Updated: 2024-02-08T09:26:22.073Z
- Description: The @utils global variable has been create to store useful values. At this moment @utils contains only two fields: currentYear which can be used to create footers…
- Author: Tomasz Dziuda
- Tags: Global Variables

The **@utils** global variable has been create to store useful values. 

At this moment **@utils** contains only two fields:

**currentYear** which can be used to create footers which will contain proper year value after the website sync:

```handlebars
Copyright by X {{@utils.currentYear}}. All rights reserved.
```

**buildDate** - it returns the build timestamp, which can be used to generate the human-readable date along with the [date](#INTERNAL_LINK#/post/28) helper:

```handlebars
{{date @utils.buildDate 'YYYY-MM-DD HH:mm'}}
```
