Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / stable / templates / admin / admin-block.html.twig
index 9464d405a82473981e7e9c4b436ecbbde985eaab..7401695766505d50664c87a26f5cd358ec8120cb 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.
  */
 #}
-<div class="panel">
+{%
+  set classes = [
+    'panel',
+  ]
+%}
+<div{{ attributes.addClass(classes) }}>
   {% if block.title %}
     <h3 class="panel__title">{{ block.title }}</h3>
   {% endif %}