Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / eu_cookie_compliance / templates / eu_cookie_compliance_popup_agreed.html.twig
1 {#
2 /**
3  * @file
4  * This is a template file for a banner informing a user that he has already
5  * agreed to cookies.
6  *
7  * When overriding this template it is important to note that jQuery will use
8  * the following classes to assign actions to buttons:
9  *
10  * hide-popup-button - destroy the banner
11  * find-more-button  - link to an information page
12  *
13  * Variables available:
14  * - $message:  Contains the text that will be display within the banner
15  * - $hide_button: Label for the hide button
16  * - $find_more_button: Label for the find out more button
17  */
18 #}
19
20 <div class="eu-cookie-compliance-banner eu-cookie-compliance-banner-thank-you">
21   <div class ="popup-content agreed eu-cookie-compliance-content">
22     <div id="popup-text" class="eu-cookie-compliance-message">
23       {{ message }}
24     </div>
25     <div id="popup-buttons" class="eu-cookie-compliance-buttons">
26       <button type="button" class="hide-popup-button eu-cookie-compliance-hide-button">{{ hide_button }}</button>
27       {% if find_more_button %}
28         <button type="button" class="find-more-button eu-cookie-compliance-more-button-thank-you" >{{ find_more_button }}</button>
29       {% endif %}
30     </div>
31   </div>
32 </div>