By hari, 27 March, 2023 Below example for show the node create time as times ago formate in custom code. Write below code this mytheme.theme file /** * Implement HOOK_preprocess_node(). */ function HOOK_preprocess_node(&$variables) { $date = $variables['node']->getCreatedTime(); $variables['created'] = \Drupal::service('date.formatter')->formatInterval(REQUEST_TIME - $date); } Write in node template (Twig) {{ created ~ "ago" }} Tags Drupal