user.html.twig 763 B

1234567891011121314151617181920212223242526
  1. {#
  2. /**
  3. * @file
  4. * Theme override for testing the presence of 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. #}
  19. <article{{ attributes.addClass('profile') }}>
  20. {% if content %}
  21. {{ content }}
  22. {% endif %}
  23. {% if user %}
  24. <p>{{ user.mail.value }}</p>
  25. {% endif %}
  26. </article>