You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
318B

  1. {# {{ value|date('U')}} #}
  2. {% if field_options.format == "d/m/Y h:i A e" or field_options.format == null %}
  3. {% set format = "d/m/Y H:i" %}
  4. {% else %}
  5. {% set format = field_options.format %}
  6. {% endif %}
  7. <time data-timestamp="{{ value|date('U') }}" title="{{ value|date('r') }}">{{ value|date(format) }}</time>