Same filename in this branch
  1. 10 core/modules/system/templates/time.html.twig
  2. 10 core/themes/stable9/templates/field/time.html.twig
  3. 10 core/themes/starterkit_theme/templates/field/time.html.twig
  4. 10 core/themes/claro/templates/classy/field/time.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/field/time.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/system/templates/time.html.twig
  2. 9 core/modules/system/templates/time.html.twig

Default theme implementation for a date / time element.

Available variables

  • timestamp: (optional) A UNIX timestamp for the datetime attribute. If the datetime cannot be represented as a UNIX timestamp, use a valid datetime attribute value in attributes.datetime.
  • text: (optional) The content to display within the <time> element. Defaults to a human-readable representation of the timestamp value or the datetime attribute value using DateFormatter::format().
  • attributes: (optional) HTML attributes to apply to the <time> element. A datetime attribute in 'attributes' overrides the 'timestamp'. To create a valid datetime attribute value from a UNIX timestamp, use DateFormatter::format() with one of the predefined 'html_*' formats.

See also

template_preprocess_time()

http://www.w3.org/TR/html5-author/the-time-element.html#attr-time-datetime

1 theme call to time.html.twig
DateTimeFormatterBase::buildDateWithIsoAttribute in core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimeFormatterBase.php
Creates a render array from a date object with ISO date attribute.

File

core/modules/system/templates/time.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a date / time element.
  5. *
  6. * Available variables
  7. * - timestamp: (optional) A UNIX timestamp for the datetime attribute. If the
  8. * datetime cannot be represented as a UNIX timestamp, use a valid datetime
  9. * attribute value in attributes.datetime.
  10. * - text: (optional) The content to display within the <time> element.
  11. * Defaults to a human-readable representation of the timestamp value or the
  12. * datetime attribute value using DateFormatter::format().
  13. * - attributes: (optional) HTML attributes to apply to the <time> element.
  14. * A datetime attribute in 'attributes' overrides the 'timestamp'. To
  15. * create a valid datetime attribute value from a UNIX timestamp, use
  16. * DateFormatter::format() with one of the predefined 'html_*' formats.
  17. *
  18. * @see template_preprocess_time()
  19. * @see http://www.w3.org/TR/html5-author/the-time-element.html#attr-time-datetime
  20. */
  21. #}
  22. <time{{ attributes }}>{{ text }}</time>