field--node--uid.html.twig

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

Default theme implementation 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.

See also

field.html.twig

File

core/modules/node/templates/field--node--uid.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the node user field.
  5. *
  6. * This is an override of field.html.twig for the node user field. See that
  7. * template for documentation about its details and overrides.
  8. *
  9. * Available variables:
  10. * - attributes: HTML attributes for the containing span element.
  11. * - items: List of all the field items. Each item contains:
  12. * - attributes: List of HTML attributes for each item.
  13. * - content: The field item content.
  14. * - entity_type: The entity type to which the field belongs.
  15. * - field_name: The name of the field.
  16. * - field_type: The type of the field.
  17. * - label_display: The display settings for the label.
  18. *
  19. * @see field.html.twig
  20. *
  21. * @ingroup themeable
  22. */
  23. #}
  24. <span{{ attributes }}>
  25. {%- for item in items -%}
  26. {{ item.content }}
  27. {%- endfor -%}
  28. </span>

Related topics


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