Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / classy / templates / content-edit / file-managed-file.html.twig
1 {#
2 /**
3  * @file
4  * Theme override to display a file form widget.
5  *
6  * Available variables:
7  * - element: Form element for the file upload.
8  * - attributes: HTML attributes for the containing element.
9  *
10  * @see template_preprocess_file_managed_file()
11  */
12 #}
13 {{ attach_library('classy/file') }}
14 {%
15   set classes = [
16     'js-form-managed-file',
17     'form-managed-file',
18   ]
19 %}
20 <div{{ attributes.addClass(classes) }}>
21   {{ element }}
22 </div>