Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / stable / templates / admin / block-content-add-list.html.twig
1 {#
2 /**
3  * @file
4  * Theme override to present a list of custom block types.
5  *
6  * Available variables:
7  * - types: A collection of all the available custom block types.
8  *   Each block type contains the following:
9  *   - link: A link to add a block of this type.
10  *   - description: A description of this custom block type.
11  *
12  * @see template_preprocess_block_content_add_list()
13  */
14 #}
15 {% spaceless %}
16   <dl>
17     {% for type in types %}
18       <dt>{{ type.link }}</dt>
19       <dd>{{ type.description }}</dd>
20     {% endfor %}
21   </dl>
22 {% endspaceless %}