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

Default theme implementation for comments.

Available variables:

  • author: (optional) Comment author. Can be a link or plain text.
  • content: The content-related items for the comment display. Use {{ content }} to print them all, or print a subset such as {{ content.field_example }}. Use the following code to temporarily suppress the printing of a given child element:

  {{ content|without('field_example') }}
  
  • created: (optional) Formatted date and time for when the comment was created. Preprocess functions can reformat it by calling DateFormatter::format() with the desired parameters on the 'comment.created' variable.
  • changed: (optional) Formatted date and time for when the comment was last changed. Preprocess functions can reformat it by calling DateFormatter::format() with the desired parameters on the 'comment.changed' variable.
  • permalink: Comment permalink.
  • submitted: (optional) Submission information created from author and created during template_preprocess_comment().
  • user_picture: (optional) The comment author's profile picture.
  • status: Comment status. Possible values are: unpublished, published, or preview.
  • title: (optional) Comment title, linked to the comment.
  • attributes: HTML attributes for the containing element. The attributes.class may contain one or more of the following classes:

    • comment: The current template type; for instance, 'theming hook'.
    • by-anonymous: Comment by an unregistered user.
    • by-{entity-type}-author: Comment by the author of the parent entity, eg. by-node-author.
    • preview: When previewing a new or edited comment.

    The following applies only to viewers who are registered users:

    • unpublished: An unpublished comment visible only to administrators.
  • 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 output populated by modules, intended to be displayed after the main title tag that appears in the template.
  • content_attributes: List of classes for the styling of the comment content.
  • title_attributes: Same as attributes, except applied to the main title tag that appears in the template.
  • threaded: A flag indicating whether the comments are threaded or not.

These variables are provided to give context about the parent comment (if any, optional):

  • parent_comment: Full parent comment entity (if any).
  • parent_author: Equivalent to author for the parent comment.
  • parent_created: Equivalent to created for the parent comment.
  • parent_changed: Equivalent to changed for the parent comment.
  • parent_title: Equivalent to title for the parent comment.
  • parent_permalink: Equivalent to permalink for the parent comment.
  • parent: A text string of parent comment submission information created from 'parent_author' and 'parent_created' during template_preprocess_comment(). This information is presented to help screen readers follow lengthy discussion threads. You can hide this from sighted users using the class visually-hidden.

These two variables are provided for context:

  • comment: Full comment object.
  • commented_entity: Entity the comments are attached to.

See also

template_preprocess_comment()

File

core/modules/comment/templates/comment.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for comments.
  5. *
  6. * Available variables:
  7. * - author: (optional) Comment author. Can be a link or plain text.
  8. * - content: The content-related items for the comment display. Use
  9. * {{ content }} to print them all, or print a subset such as
  10. * {{ content.field_example }}. Use the following code to temporarily suppress
  11. * the printing of a given child element:
  12. * @code
  13. * {{ content|without('field_example') }}
  14. * @endcode
  15. * - created: (optional) Formatted date and time for when the comment was
  16. * created. Preprocess functions can reformat it by calling
  17. * DateFormatter::format() with the desired parameters on the
  18. * 'comment.created' variable.
  19. * - changed: (optional) Formatted date and time for when the comment was last
  20. * changed. Preprocess functions can reformat it by calling
  21. * DateFormatter::format() with the desired parameters on the
  22. * 'comment.changed' variable.
  23. * - permalink: Comment permalink.
  24. * - submitted: (optional) Submission information created from author and
  25. * created during template_preprocess_comment().
  26. * - user_picture: (optional) The comment author's profile picture.
  27. * - status: Comment status. Possible values are:
  28. * unpublished, published, or preview.
  29. * - title: (optional) Comment title, linked to the comment.
  30. * - attributes: HTML attributes for the containing element.
  31. * The attributes.class may contain one or more of the following classes:
  32. * - comment: The current template type; for instance, 'theming hook'.
  33. * - by-anonymous: Comment by an unregistered user.
  34. * - by-{entity-type}-author: Comment by the author of the parent entity,
  35. * eg. by-node-author.
  36. * - preview: When previewing a new or edited comment.
  37. * The following applies only to viewers who are registered users:
  38. * - unpublished: An unpublished comment visible only to administrators.
  39. * - title_prefix: Additional output populated by modules, intended to be
  40. * displayed in front of the main title tag that appears in the template.
  41. * - title_suffix: Additional output populated by modules, intended to be
  42. * displayed after the main title tag that appears in the template.
  43. * - content_attributes: List of classes for the styling of the comment content.
  44. * - title_attributes: Same as attributes, except applied to the main title
  45. * tag that appears in the template.
  46. * - threaded: A flag indicating whether the comments are threaded or not.
  47. *
  48. * These variables are provided to give context about the parent comment (if
  49. * any, optional):
  50. * - parent_comment: Full parent comment entity (if any).
  51. * - parent_author: Equivalent to author for the parent comment.
  52. * - parent_created: Equivalent to created for the parent comment.
  53. * - parent_changed: Equivalent to changed for the parent comment.
  54. * - parent_title: Equivalent to title for the parent comment.
  55. * - parent_permalink: Equivalent to permalink for the parent comment.
  56. * - parent: A text string of parent comment submission information created from
  57. * 'parent_author' and 'parent_created' during template_preprocess_comment().
  58. * This information is presented to help screen readers follow lengthy
  59. * discussion threads. You can hide this from sighted users using the class
  60. * visually-hidden.
  61. *
  62. * These two variables are provided for context:
  63. * - comment: Full comment object.
  64. * - commented_entity: Entity the comments are attached to.
  65. *
  66. * @see template_preprocess_comment()
  67. *
  68. * @ingroup themeable
  69. */
  70. #}
  71. <article{{ attributes.addClass('js-comment') }}>
  72. {#
  73. Hide the "new" indicator by default, let a piece of JavaScript ask the
  74. server which comments are new for the user. Rendering the final "new"
  75. indicator here would break the render cache.
  76. #}
  77. <mark class="hidden" data-comment-timestamp="{{ new_indicator_timestamp }}"></mark>
  78. {% if submitted %}
  79. <footer>
  80. {{ user_picture }}
  81. <p>{{ submitted }}</p>
  82. {#
  83. Indicate the semantic relationship between parent and child comments for
  84. accessibility. The list is difficult to navigate in a screen reader
  85. without this information.
  86. #}
  87. {% if parent %}
  88. <p class="visually-hidden">{{ parent }}</p>
  89. {% endif %}
  90. {{ permalink }}
  91. </footer>
  92. {% endif %}
  93. <div{{ content_attributes }}>
  94. {% if title %}
  95. {{ title_prefix }}
  96. <h3{{ title_attributes }}>{{ title }}</h3>
  97. {{ title_suffix }}
  98. {% endif %}
  99. {{ content }}
  100. </div>
  101. </article>

Related topics