You are here

campaignmonitor-campaign-html.html.twig in Campaign Monitor 8

Default campaign monitor template to render a campaign for export.

Available variables:

  • html: The html generated by the view mode for the campaign content

File

modules/campaignmonitor_campaign/templates/campaignmonitor-campaign-html.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default campaign monitor template to render a campaign for export.
  5. *
  6. * Available variables:
  7. * - html: The html generated by the view mode for the campaign content
  8. *
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. <html>
  14. <head>
  15. {# This is substituted out in a core module #}
  16. [styles]
  17. </head>
  18. <body>
  19. {# HTML needs to be rendered raw so that all tags display #}
  20. {{ html|raw }}
  21. </body>
  22. </html>