heartbeat-stream.html.twig 885 B

123456789101112131415161718192021222324252627282930
  1. {#
  2. /**
  3. * @file heartbeat-stream.html.twig
  4. * Default theme implementation to present Heartbeat stream data.
  5. *
  6. * This template is used when viewing Heartbeat stream pages.
  7. *
  8. *
  9. * Available variables:
  10. * - content: A list of content items. Use 'content' to print all content, or
  11. * - attributes: HTML attributes for the container element.
  12. *
  13. * @see template_preprocess_heartbeat_stream()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div class="heartbeat-stream">
  19. {% if content %}
  20. {{- content -}}
  21. {% endif %}
  22. {% autoescape false %}
  23. {% for message in messages %}
  24. <div{{ attributes.addClass('heartbeat-message') }}>
  25. <div class="heartbeat-owner"><a href="/user/{{ message.userId }}"><img src="{{ message.userPicture }}" /></a><div class="time-ago">{{ message.timeAgo }} ago</div></div>
  26. {{ message.heartbeat }}<br>
  27. </div>
  28. {% endfor %}
  29. {% endautoescape %}
  30. </div>