Drupal 9: Calculate Published Time In Node Template
26th December 2022
Add the following to a node template.
{% if node.bundle == 'article' and date(node.createdtime) < date('-2 year') %}
<div class="messages messages--warning" role="alert">
This article is over 2 years old.
</div>
{% endif %}
Add new comment