diff --git a/core/modules/node/templates/node.html.twig b/core/modules/node/templates/node.html.twig index 60e469a..1e65cdc 100644 --- a/core/modules/node/templates/node.html.twig +++ b/core/modules/node/templates/node.html.twig @@ -8,9 +8,8 @@ * - id: The node ID. * - bundle: The type of the node, for example, "page" or "article". * - authorid: The user ID of the node author. - * - createdtime: Formatted creation date. Preprocess functions can - * reformat it by calling format_date() with the desired parameters on - * $variables['node']->getCreatedTime(). + * - createdtime: Unix timestamps of creation date. + * - changedtime: Unix timestamps of changed date. * - label: The title of the node. * - content: All node items. Use {{ content }} to print them all, * or print a subset such as {{ content.field_example }}. Use diff --git a/core/themes/bartik/templates/node.html.twig b/core/themes/bartik/templates/node.html.twig index 36ad9a7..86c0e02 100644 --- a/core/themes/bartik/templates/node.html.twig +++ b/core/themes/bartik/templates/node.html.twig @@ -8,9 +8,8 @@ * - id: The node ID. * - bundle: The type of the node, for example, "page" or "article". * - authorid: The user ID of the node author. - * - createdtime: Formatted creation date. Preprocess functions can - * reformat it by calling format_date() with the desired parameters on - * $variables['node']->getCreatedTime(). + * - createdtime: Unix timestamps of creation date. + * - changedtime: Unix timestamps of changed date. * - label: The title of the node. * - content: All node items. Use {{ content }} to print them all, * or print a subset such as {{ content.field_example }}. Use diff --git a/core/themes/classy/templates/content/node.html.twig b/core/themes/classy/templates/content/node.html.twig index 6342123..eda651b 100644 --- a/core/themes/classy/templates/content/node.html.twig +++ b/core/themes/classy/templates/content/node.html.twig @@ -8,9 +8,8 @@ * - id: The node ID. * - bundle: The type of the node, for example, "page" or "article". * - authorid: The user ID of the node author. - * - createdtime: Formatted creation date. Preprocess functions can - * reformat it by calling format_date() with the desired parameters on - * $variables['node']->getCreatedTime(). + * - createdtime: Unix timestamps of creation date. + * - changedtime: Unix timestamps of changed date. * - label: The title of the node. * - content: All node items. Use {{ content }} to print them all, * or print a subset such as {{ content.field_example }}. Use