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

Default theme implementation to present all user data.

This template is used when viewing a registered user's page, e.g., example.com/user/123. 123 being the user's ID.

Available variables:

  • content: A list of content items. Use 'content' to print all content, or print a subset such as 'content.field_example'. Fields attached to a user such as 'user_picture' are available as 'content.user_picture'.
  • attributes: HTML attributes for the container element.
  • user: A Drupal User entity.

See also

template_preprocess_user()

File

core/modules/user/templates/user.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to present all user data.
  5. *
  6. * This template is used when viewing a registered user's page,
  7. * e.g., example.com/user/123. 123 being the user's ID.
  8. *
  9. * Available variables:
  10. * - content: A list of content items. Use 'content' to print all content, or
  11. * print a subset such as 'content.field_example'. Fields attached to a user
  12. * such as 'user_picture' are available as 'content.user_picture'.
  13. * - attributes: HTML attributes for the container element.
  14. * - user: A Drupal User entity.
  15. *
  16. * @see template_preprocess_user()
  17. *
  18. * @ingroup themeable
  19. */
  20. #}
  21. <article{{ attributes }}>
  22. {% if content %}
  23. {{- content -}}
  24. {% endif %}
  25. </article>

Related topics