You are here

gdpr-popup.html.twig in General Data Protection Regulation Compliance 8

<div id="gdpr-popup" class="{{data.popup_position}}" {{data.popup_color|raw}}>
  <div class="gdpr-popup-content">
    <div class="gdpr-popup-text {{data.popup_text}}">
      <p class="gdpr-popup-cookies">{{data.text_cookies}}</p>
      <p class="gdpr-popup-analytics">{{data.text_analytics}}</p>
    </div>
    <div class="gdpr-popup-buttons {{data.button_text}}">
      <button type="button" id="gdpr-agree" {{data.button_color|raw}}>
        {{data.btn_agree}}
      </button>
      <button type="button" id="gdpr-find-more" data-morelink="{{data.popup_morelink}}" {{data.button_color|raw}}>
        {{data.btn_findmore}}
      </button>
    </div>
  </div>
</div>

File

templates/gdpr-popup.html.twig
View source
  1. <div id="gdpr-popup" class="{{data.popup_position}}" {{data.popup_color|raw}}>
  2. <div class="gdpr-popup-content">
  3. <div class="gdpr-popup-text {{data.popup_text}}">
  4. <p class="gdpr-popup-cookies">{{data.text_cookies}}</p>
  5. <p class="gdpr-popup-analytics">{{data.text_analytics}}</p>
  6. </div>
  7. <div class="gdpr-popup-buttons {{data.button_text}}">
  8. <button type="button" id="gdpr-agree" {{data.button_color|raw}}>
  9. {{data.btn_agree}}
  10. </button>
  11. <button type="button" id="gdpr-find-more" data-morelink="{{data.popup_morelink}}" {{data.button_color|raw}}>
  12. {{data.btn_findmore}}
  13. </button>
  14. </div>
  15. </div>
  16. </div>