time.html.twig

Same filename in this branch
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/field/time.html.twig
  2. 8.9.x core/themes/seven/templates/classy/field/time.html.twig
  3. 8.9.x core/themes/claro/templates/classy/field/time.html.twig
  4. 8.9.x core/themes/bartik/templates/classy/field/time.html.twig
  5. 8.9.x core/themes/stable/templates/field/time.html.twig
  6. 8.9.x core/themes/classy/templates/field/time.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/field/time.html.twig
  2. 9 core/themes/stable9/templates/field/time.html.twig
  3. 9 core/themes/seven/templates/classy/field/time.html.twig
  4. 9 core/themes/claro/templates/classy/field/time.html.twig
  5. 9 core/themes/bartik/templates/classy/field/time.html.twig
  6. 9 core/themes/stable/templates/field/time.html.twig
  7. 9 core/themes/starterkit_theme/templates/field/time.html.twig
  8. 9 core/themes/classy/templates/field/time.html.twig
  9. 9 core/modules/system/templates/time.html.twig
  10. 10 core/profiles/demo_umami/themes/umami/templates/classy/field/time.html.twig
  11. 10 core/themes/stable9/templates/field/time.html.twig
  12. 10 core/themes/claro/templates/classy/field/time.html.twig
  13. 10 core/themes/starterkit_theme/templates/field/time.html.twig
  14. 10 core/modules/system/templates/time.html.twig
  15. 11.x core/profiles/demo_umami/themes/umami/templates/classy/field/time.html.twig
  16. 11.x core/themes/stable9/templates/field/time.html.twig
  17. 11.x core/themes/claro/templates/classy/field/time.html.twig
  18. 11.x core/themes/starterkit_theme/templates/field/time.html.twig
  19. 11.x 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-datet…

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>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.