composition.html.twig 449 B

1234567891011121314151617181920
  1. {#
  2. /**
  3. * @file composition.html.twig
  4. * Default theme implementation to present Composition data.
  5. *
  6. * This template is used when viewing Composition 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_composition()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div{{ attributes }}>
  19. {{ content }}
  20. </div>