5f4ac73625b6b015ee6049dd8dc5ca1ee6c48ffb
[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 pop-up 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 pop-up
11  * find-more-button  - link to an information page
12  *
13  * Variables available:
14  * - $message:  Contains the text that will be display whithin the pop-up
15  * - $hide_button: Label for the hide button
16  * - $find_more_button: Label for the find out more button
17  */
18 #}
19
20 <div>
21   <div class ="popup-content agreed">
22     <div id="popup-text">
23       {{ message }}
24     </div>
25     <div id="popup-buttons">
26       <button type="button" class="hide-popup-button">{{ hide_button }}</button>
27       <button type="button" class="find-more-button" >{{ find_more_button }}</button>
28     </div>
29   </div>
30 </div>