Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / classy / templates / field / time.html.twig
1 {#
2 /**
3  * @file
4  * Theme override 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 format_date().
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  *   format_date() 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.addClass('datetime') }}>{{ text }}</time>