You are here

cookie-banner-message.html.twig in Cookie_Banner 8

Variables available:

  • use_cookie_message: Contains the text that will be displayed.
  • more_info_url: Url that will give user more information.
  • more_info_message: User friendly text for link.

File

templates/cookie-banner-message.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Variables available:
  5. * - use_cookie_message: Contains the text that will be displayed.
  6. * - more_info_url: Url that will give user more information.
  7. * - more_info_message: User friendly text for link.
  8. */
  9. #}
  10. <div id="cookie-banner">
  11. <p>
  12. {{ use_cookie_message }}
  13. <a href="{{ more_info_url }}">{{ more_info_message }}</a>
  14. </p>
  15. <button class="close">
  16. <span><?php print t('Close cookie notice'); ?></span>
  17. </button>
  18. </div>