Core Variables
Core variables are those that start with _core and they provide access to data that can be used in most templates.
Some core variables simply hold data, while others are actually an object that allows you to either manipulate data or perform some special action.
The following core variables are available:
- Date variables: _core.date
- Geolocation variables: _core.geo
- Mobile detection variables: _core.mobile
- Request object: _core.request
- Service variables: _core.service (used with Google ReCAPTCHA V3 as an example)
- Site settings: _core.settings
- Theme settings: _core.theme
- Current timestamp value: _core.timestamp
- Logged in public user: _core.user
Current timestamp value
If you want to access the current timestamp value you can do so with the _core.date.timestamp variable or with a slightly shorter, _core.timestamp variable.
{{ _core.date.timestamp }}
OR
{{ _core.timestamp }}