Initial Drupal 11 with DDEV setup
This commit is contained in:
		@ -0,0 +1,22 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for entity page title.
 | 
			
		||||
 *
 | 
			
		||||
 * This output from this template is nested within the page-title template as
 | 
			
		||||
 * the title variable. This allows a further refinement of the page title
 | 
			
		||||
 * specific to an entity.
 | 
			
		||||
 *
 | 
			
		||||
 * This template is only used if the additional entity type property
 | 
			
		||||
 * 'enable_page_title_template' is set to TRUE.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the containing span element.
 | 
			
		||||
 * - title: Entity label.
 | 
			
		||||
 * - entity: Entity having a label field.
 | 
			
		||||
 * - view_mode: View mode; for example, "teaser" or "full".
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
<span{{ attributes }}>
 | 
			
		||||
  {{ title }}
 | 
			
		||||
</span>
 | 
			
		||||
@ -0,0 +1,43 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for comment fields.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the containing element.
 | 
			
		||||
 * - label_hidden: Whether to show the field label or not.
 | 
			
		||||
 * - title_attributes: HTML attributes for the title.
 | 
			
		||||
 * - label: The label for the field.
 | 
			
		||||
 * - title_prefix: Additional output populated by modules, intended to be
 | 
			
		||||
 *   displayed in front of the main title tag that appears in the template.
 | 
			
		||||
 * - title_suffix: Additional title output populated by modules, intended to
 | 
			
		||||
 *   be displayed after the main title tag that appears in the template.
 | 
			
		||||
 * - comments: List of comments rendered through comment.html.twig.
 | 
			
		||||
 * - content_attributes: HTML attributes for the form title.
 | 
			
		||||
 * - comment_form: The 'Add new comment' form.
 | 
			
		||||
 * - comment_display_mode: Is the comments are threaded.
 | 
			
		||||
 * - comment_type: The comment type bundle ID for the comment field.
 | 
			
		||||
 * - entity_type: The entity type to which the field belongs.
 | 
			
		||||
 * - field_name: The name of the field.
 | 
			
		||||
 * - field_type: The type of the field.
 | 
			
		||||
 * - label_display: The display settings for the label.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_field()
 | 
			
		||||
 * @see comment_preprocess_field()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
<section{{ attributes }}>
 | 
			
		||||
  {% if comments and not label_hidden %}
 | 
			
		||||
    {{ title_prefix }}
 | 
			
		||||
    <h2{{ title_attributes }}>{{ label }}</h2>
 | 
			
		||||
    {{ title_suffix }}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
 | 
			
		||||
  {{ comments }}
 | 
			
		||||
 | 
			
		||||
  {% if comment_form %}
 | 
			
		||||
    <h2{{ content_attributes }}>{{ 'Add new comment'|t }}</h2>
 | 
			
		||||
    {{ comment_form }}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
 | 
			
		||||
</section>
 | 
			
		||||
@ -0,0 +1,36 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for the node created field.
 | 
			
		||||
 *
 | 
			
		||||
 * This is an override of field.html.twig for the node created field. See that
 | 
			
		||||
 * template for documentation about its details and overrides.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the containing span element.
 | 
			
		||||
 * - items: List of all the field items. Each item contains:
 | 
			
		||||
 *   - attributes: List of HTML attributes for each item.
 | 
			
		||||
 *   - content: The field item content.
 | 
			
		||||
 * - entity_type: The entity type to which the field belongs.
 | 
			
		||||
 * - field_name: The name of the field.
 | 
			
		||||
 * - field_type: The type of the field.
 | 
			
		||||
 * - label_display: The display settings for the label.
 | 
			
		||||
 * - is_inline: If false, display an ordinary field.
 | 
			
		||||
 *   If true, display an inline format, suitable for inside elements such as
 | 
			
		||||
 *   <span>, <h2> and so on.
 | 
			
		||||
 *
 | 
			
		||||
 * @see field.html.twig
 | 
			
		||||
 * @see node_preprocess_field__node()
 | 
			
		||||
 *
 | 
			
		||||
 * @todo Delete as part of https://www.drupal.org/node/3015623
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% if not is_inline %}
 | 
			
		||||
  {% include "field.html.twig" %}
 | 
			
		||||
{% else %}
 | 
			
		||||
<span{{ attributes }}>
 | 
			
		||||
  {%- for item in items -%}
 | 
			
		||||
    {{ item.content }}
 | 
			
		||||
  {%- endfor -%}
 | 
			
		||||
</span>
 | 
			
		||||
{% endif %}
 | 
			
		||||
@ -0,0 +1,36 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for the node title field.
 | 
			
		||||
 *
 | 
			
		||||
 * This is an override of field.html.twig for the node title field. See that
 | 
			
		||||
 * template for documentation about its details and overrides.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the containing span element.
 | 
			
		||||
 * - items: List of all the field items. Each item contains:
 | 
			
		||||
 *   - attributes: List of HTML attributes for each item.
 | 
			
		||||
 *   - content: The field item content.
 | 
			
		||||
 * - entity_type: The entity type to which the field belongs.
 | 
			
		||||
 * - field_name: The name of the field.
 | 
			
		||||
 * - field_type: The type of the field.
 | 
			
		||||
 * - label_display: The display settings for the label.
 | 
			
		||||
 * - is_inline: If false, display an ordinary field.
 | 
			
		||||
 *   If true, display an inline format, suitable for inside elements such as
 | 
			
		||||
 *   <span>, <h2> and so on.
 | 
			
		||||
 *
 | 
			
		||||
 * @see field.html.twig
 | 
			
		||||
 * @see node_preprocess_field__node()
 | 
			
		||||
 *
 | 
			
		||||
 * @todo Delete as part of https://www.drupal.org/node/3015623
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% if not is_inline %}
 | 
			
		||||
  {% include "field.html.twig" %}
 | 
			
		||||
{% else %}
 | 
			
		||||
<span{{ attributes }}>
 | 
			
		||||
  {%- for item in items -%}
 | 
			
		||||
    {{ item.content }}
 | 
			
		||||
  {%- endfor -%}
 | 
			
		||||
</span>
 | 
			
		||||
{% endif %}
 | 
			
		||||
@ -0,0 +1,36 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for the node user field.
 | 
			
		||||
 *
 | 
			
		||||
 * This is an override of field.html.twig for the node user field. See that
 | 
			
		||||
 * template for documentation about its details and overrides.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the containing span element.
 | 
			
		||||
 * - items: List of all the field items. Each item contains:
 | 
			
		||||
 *   - attributes: List of HTML attributes for each item.
 | 
			
		||||
 *   - content: The field item content.
 | 
			
		||||
 * - entity_type: The entity type to which the field belongs.
 | 
			
		||||
 * - field_name: The name of the field.
 | 
			
		||||
 * - field_type: The type of the field.
 | 
			
		||||
 * - label_display: The display settings for the label.
 | 
			
		||||
 * - is_inline: If false, display an ordinary field.
 | 
			
		||||
 *   If true, display an inline format, suitable for inside elements such as
 | 
			
		||||
 *   <span>, <h2> and so on.
 | 
			
		||||
 *
 | 
			
		||||
 * @see field.html.twig
 | 
			
		||||
 * @see node_preprocess_field__node()
 | 
			
		||||
 *
 | 
			
		||||
 * @todo Delete as part of https://www.drupal.org/node/3015623
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% if not is_inline %}
 | 
			
		||||
  {% include "field.html.twig" %}
 | 
			
		||||
{% else %}
 | 
			
		||||
<span{{ attributes }}>
 | 
			
		||||
  {%- for item in items -%}
 | 
			
		||||
    {{ item.content }}
 | 
			
		||||
  {%- endfor -%}
 | 
			
		||||
</span>
 | 
			
		||||
{% endif %}
 | 
			
		||||
							
								
								
									
										70
									
								
								web/core/themes/stable9/templates/field/field.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										70
									
								
								web/core/themes/stable9/templates/field/field.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,70 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for a field.
 | 
			
		||||
 *
 | 
			
		||||
 * To override output, copy the "field.html.twig" from the templates directory
 | 
			
		||||
 * to your theme's directory and customize it, just like customizing other
 | 
			
		||||
 * Drupal templates such as page.html.twig or node.html.twig.
 | 
			
		||||
 *
 | 
			
		||||
 * Instead of overriding the theming for all fields, you can also just override
 | 
			
		||||
 * theming for a subset of fields using
 | 
			
		||||
 * @link themeable Theme hook suggestions. @endlink For example,
 | 
			
		||||
 * here are some theme hook suggestions that can be used for a field_foo field
 | 
			
		||||
 * on an article node type:
 | 
			
		||||
 * - field--node--field-foo--article.html.twig
 | 
			
		||||
 * - field--node--field-foo.html.twig
 | 
			
		||||
 * - field--node--article.html.twig
 | 
			
		||||
 * - field--field-foo.html.twig
 | 
			
		||||
 * - field--text-with-summary.html.twig
 | 
			
		||||
 * - field.html.twig
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the containing element.
 | 
			
		||||
 * - label_hidden: Whether to show the field label or not.
 | 
			
		||||
 * - title_attributes: HTML attributes for the title.
 | 
			
		||||
 * - label: The label for the field.
 | 
			
		||||
 * - multiple: TRUE if a field can contain multiple items.
 | 
			
		||||
 * - items: List of all the field items. Each item contains:
 | 
			
		||||
 *   - attributes: List of HTML attributes for each item.
 | 
			
		||||
 *   - content: The field item's content.
 | 
			
		||||
 * - entity_type: The entity type to which the field belongs.
 | 
			
		||||
 * - field_name: The name of the field.
 | 
			
		||||
 * - field_type: The type of the field.
 | 
			
		||||
 * - label_display: The display settings for the label.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_field()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{%
 | 
			
		||||
  set title_classes = [
 | 
			
		||||
    label_display == 'visually_hidden' ? 'visually-hidden',
 | 
			
		||||
  ]
 | 
			
		||||
%}
 | 
			
		||||
 | 
			
		||||
{% if label_hidden %}
 | 
			
		||||
  {% if multiple %}
 | 
			
		||||
    <div{{ attributes }}>
 | 
			
		||||
      {% for item in items %}
 | 
			
		||||
        <div{{ item.attributes }}>{{ item.content }}</div>
 | 
			
		||||
      {% endfor %}
 | 
			
		||||
    </div>
 | 
			
		||||
  {% else %}
 | 
			
		||||
    {% for item in items %}
 | 
			
		||||
      <div{{ attributes }}>{{ item.content }}</div>
 | 
			
		||||
    {% endfor %}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
{% else %}
 | 
			
		||||
  <div{{ attributes }}>
 | 
			
		||||
    <div{{ title_attributes.addClass(title_classes) }}>{{ label }}</div>
 | 
			
		||||
    {% if multiple %}
 | 
			
		||||
      <div>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
    {% for item in items %}
 | 
			
		||||
      <div{{ item.attributes }}>{{ item.content }}</div>
 | 
			
		||||
    {% endfor %}
 | 
			
		||||
    {% if multiple %}
 | 
			
		||||
      </div>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
  </div>
 | 
			
		||||
{% endif %}
 | 
			
		||||
							
								
								
									
										20
									
								
								web/core/themes/stable9/templates/field/file-audio.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								web/core/themes/stable9/templates/field/file-audio.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,20 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
* @file
 | 
			
		||||
* Theme override to display the file entity as an audio tag.
 | 
			
		||||
*
 | 
			
		||||
* Available variables:
 | 
			
		||||
* - attributes: An array of HTML attributes, intended to be added to the
 | 
			
		||||
*   audio tag.
 | 
			
		||||
* - files: And array of files to be added as sources for the audio tag. Each
 | 
			
		||||
*   element is an array with the following elements:
 | 
			
		||||
*   - file: The full file object.
 | 
			
		||||
*   - source_attributes: An array of HTML attributes for to be added to the
 | 
			
		||||
*     source tag.
 | 
			
		||||
*/
 | 
			
		||||
#}
 | 
			
		||||
<audio {{ attributes }}>
 | 
			
		||||
  {% for file in files %}
 | 
			
		||||
    <source {{ file.source_attributes }} />
 | 
			
		||||
  {% endfor %}
 | 
			
		||||
</audio>
 | 
			
		||||
							
								
								
									
										17
									
								
								web/core/themes/stable9/templates/field/file-link.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								web/core/themes/stable9/templates/field/file-link.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,17 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for a link to a file.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: The HTML attributes for the containing element.
 | 
			
		||||
 * - link: A link to the file.
 | 
			
		||||
 * - file_size: The size of the file.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_file_link()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
<span{{ attributes }}>{{ link }}</span>
 | 
			
		||||
{% if file_size %}
 | 
			
		||||
  <span>({{ file_size }})</span>
 | 
			
		||||
{% endif %}
 | 
			
		||||
							
								
								
									
										20
									
								
								web/core/themes/stable9/templates/field/file-video.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								web/core/themes/stable9/templates/field/file-video.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,20 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
* @file
 | 
			
		||||
* Theme override to display the file entity as a video tag.
 | 
			
		||||
*
 | 
			
		||||
* Available variables:
 | 
			
		||||
* - attributes: An array of HTML attributes, intended to be added to the
 | 
			
		||||
*   video tag.
 | 
			
		||||
* - files: And array of files to be added as sources for the video tag. Each
 | 
			
		||||
*   element is an array with the following elements:
 | 
			
		||||
*   - file: The full file object.
 | 
			
		||||
*   - source_attributes: An array of HTML attributes for to be added to the
 | 
			
		||||
*     source tag.
 | 
			
		||||
*/
 | 
			
		||||
#}
 | 
			
		||||
<video {{ attributes }}>
 | 
			
		||||
  {% for file in files %}
 | 
			
		||||
    <source {{ file.source_attributes }} />
 | 
			
		||||
  {% endfor %}
 | 
			
		||||
</video>
 | 
			
		||||
@ -0,0 +1,18 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override to display a formatted image field.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - image: A collection of image data.
 | 
			
		||||
 * - image_style: An optional image style.
 | 
			
		||||
 * - url: An optional URL the image can be linked to.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_image_formatter()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% if url %}
 | 
			
		||||
  {{ link(image, url) }}
 | 
			
		||||
{% else %}
 | 
			
		||||
  {{ image }}
 | 
			
		||||
{% endif %}
 | 
			
		||||
@ -0,0 +1,18 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override for an image using a specific image style.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the image, including the following:
 | 
			
		||||
 *   - src: Full URL or relative path to the image file.
 | 
			
		||||
 *   - class: One or more classes to be applied to the image.
 | 
			
		||||
 *   - width: The width of the image (if known).
 | 
			
		||||
 *   - height: The height of the image (if known).
 | 
			
		||||
 *   - title: The title of the image.
 | 
			
		||||
 *   - alt: The alternative text for the image.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_image_style()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{{ image }}
 | 
			
		||||
							
								
								
									
										13
									
								
								web/core/themes/stable9/templates/field/image.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								web/core/themes/stable9/templates/field/image.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,13 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override of an image.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - attributes: HTML attributes for the img tag.
 | 
			
		||||
 * - style_name: (optional) The name of the image style applied.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_image()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
<img{{ attributes }} />
 | 
			
		||||
@ -0,0 +1,15 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override of a link with separate title and URL elements.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - link: The link that has already been formatted by l().
 | 
			
		||||
 * - title: (optional) A descriptive or alternate title for the link, which may
 | 
			
		||||
 *   be different than the actual link text.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_link_formatter_link_separate()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{{~ title ~}}
 | 
			
		||||
{{~ link ~}}
 | 
			
		||||
@ -0,0 +1,17 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override to display a formatted responsive image field.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - responsive_image: A collection of responsive image data.
 | 
			
		||||
 * - url: An optional URL the image can be linked to.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_responsive_image_formatter()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% if url %}
 | 
			
		||||
  <a href="{{ url }}">{{ responsive_image }}</a>
 | 
			
		||||
{% else %}
 | 
			
		||||
  {{ responsive_image }}
 | 
			
		||||
{% endif %}
 | 
			
		||||
@ -0,0 +1,27 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override of a responsive image.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - sources: The attributes of the <source> tags for this <picture> tag.
 | 
			
		||||
 * - img_element: The controlling image, with the fallback image in srcset.
 | 
			
		||||
 * - output_image_tag: Whether or not to output an <img> tag instead of a
 | 
			
		||||
 *   <picture> tag.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_responsive_image()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% if output_image_tag %}
 | 
			
		||||
  {{ img_element }}
 | 
			
		||||
{% else %}
 | 
			
		||||
  <picture>
 | 
			
		||||
    {% if sources %}
 | 
			
		||||
      {% for source_attributes in sources %}
 | 
			
		||||
        <source{{ source_attributes }}/>
 | 
			
		||||
      {% endfor %}
 | 
			
		||||
    {% endif %}
 | 
			
		||||
    {# The controlling image, with the fallback image in srcset. #}
 | 
			
		||||
    {{ img_element }}
 | 
			
		||||
  </picture>
 | 
			
		||||
{% endif %}
 | 
			
		||||
							
								
								
									
										22
									
								
								web/core/themes/stable9/templates/field/time.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								web/core/themes/stable9/templates/field/time.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,22 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme override 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 \Drupal\Core\Datetime\DatePreprocess::preprocessTime()
 | 
			
		||||
 * @see https://www.w3.org/TR/html5-author/the-time-element.html#attr-time-datetime
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
<time{{ attributes }}>{{ text }}</time>
 | 
			
		||||
		Reference in New Issue
	
	Block a user