heartbeat_stream.html.twig 570 B

1234567891011121314151617181920212223
  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{{ attributes.addClass('heartbeat_stream') }}>
  19. {% if content %}
  20. {{- content -}}
  21. <h1> The Jiggaman Cometh </h1>
  22. {% endif %}
  23. </div>