Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / templates / admin-block.html.twig
index c3dab0efc8d70e509f006f35270cb4ddc06fee16..6d1fa535dbb287fa4b40022c48d652c78e4b72e8 100644 (file)
  *   - content: (optional) The content of the block.
  *   - description: (optional) A description of the block.
  *     (Description should only be output if content is not available).
+ * - attributes: HTML attributes for the containing div element.
  *
  * @ingroup themeable
  */
 #}
-<div class="panel">
+{%
+  set classes = [
+    'panel',
+  ]
+%}
+<div{{ attributes.addClass(classes) }}>
   {% if block.title %}
     <h3 class="panel__title">{{ block.title }}</h3>
   {% endif %}