Further modules included.
[yaffs-website] / web / modules / contrib / eu_cookie_compliance / templates / eu_cookie_compliance_popup_info.html.twig
1 {#
2 /**
3  * @file
4  * This is a template file for a pop-up prompting user to give their consent for
5  * the website to set 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  * agree-button      - agree to setting cookies
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  * - agree_button: Label for the agree button
16  * - disagree_button: Label for the disagree button
17  */
18 #}
19
20 <div>
21   <div class ="popup-content info">
22     <div id="popup-text">
23       {{ message }}
24     </div>
25     <div id="popup-buttons">
26       <button type="button" class="agree-button">{{ agree_button }}</button>
27       <button type="button" class="find-more-button">{{ disagree_button }}</button>
28     </div>
29   </div>
30 </div>