Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / dropzonejs / templates / dropzonejs.html.twig
1 {#
2 /**
3  * @file
4  * Theme implementation for the dropzonejs form element.
5  *
6  * Available variables:
7  * - attributes: A list of HTML attributes for the element.
8  * - dropzone_description: A message to be displayed in the dropzone field.
9  * - or_text: A translatable string of the word 'or'.
10  * - select_files_button_text: The text shown on the 'Select files' button.
11  * - children: Optional additional rendered elements.
12  * - uploaded_files: Hidden element that holds uploaded files.
13  *
14  * @see template_preprocess_dropzonejs()
15  */
16 #}
17
18 <div{{ attributes }}>
19     <div class="dz-message">
20         <p>{{ dropzone_description }}</p>
21         <p>{{ or_text }}</p>
22         <a href="#" onclick="event.preventDefault();"
23            class="button">{{ select_files_button_text }}</a>
24     </div>
25 </div>
26 {{ uploaded_files }}
27 {{ children }}