Same filename in this branch
  1. 10 core/modules/comment/templates/field--comment.html.twig
  2. 10 core/themes/olivero/templates/field/field--comment.html.twig
  3. 10 core/themes/stable9/templates/field/field--comment.html.twig
  4. 10 core/themes/starterkit_theme/templates/field/field--comment.html.twig
  5. 10 core/themes/claro/templates/classy/field/field--comment.html.twig
  6. 10 core/modules/big_pipe/tests/themes/big_pipe_test_theme/templates/field--comment.html.twig
  7. 10 core/profiles/demo_umami/themes/umami/templates/classy/field/field--comment.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/comment/templates/field--comment.html.twig
  2. 9 core/modules/comment/templates/field--comment.html.twig

Default 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 also

template_preprocess_field()

comment_preprocess_field()

File

core/modules/comment/templates/field--comment.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme override for comment fields.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the containing element.
  8. * - label_hidden: Whether to show the field label or not.
  9. * - title_attributes: HTML attributes for the title.
  10. * - label: The label for the field.
  11. * - title_prefix: Additional output populated by modules, intended to be
  12. * displayed in front of the main title tag that appears in the template.
  13. * - title_suffix: Additional title output populated by modules, intended to
  14. * be displayed after the main title tag that appears in the template.
  15. * - comments: List of comments rendered through comment.html.twig.
  16. * - content_attributes: HTML attributes for the form title.
  17. * - comment_form: The 'Add new comment' form.
  18. * - comment_display_mode: Is the comments are threaded.
  19. * - comment_type: The comment type bundle ID for the comment field.
  20. * - entity_type: The entity type to which the field belongs.
  21. * - field_name: The name of the field.
  22. * - field_type: The type of the field.
  23. * - label_display: The display settings for the label.
  24. *
  25. * @see template_preprocess_field()
  26. * @see comment_preprocess_field()
  27. */
  28. #}
  29. <section{{ attributes }}>
  30. {% if comments and not label_hidden %}
  31. {{ title_prefix }}
  32. <h2{{ title_attributes }}>{{ label }}</h2>
  33. {{ title_suffix }}
  34. {% endif %}
  35. {{ comments }}
  36. {% if comment_form %}
  37. <h2{{ content_attributes }}>{{ 'Add new comment'|t }}</h2>
  38. {{ comment_form }}
  39. {% endif %}
  40. </section>