Backup of db before drupal security update
[yaffs-website] / web / core / modules / block_content / templates / block-content-add-list.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation 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  * @ingroup themeable
15  */
16 #}
17 {% spaceless %}
18   <dl>
19     {% for type in types %}
20       <dt>{{ type.link }}</dt>
21       <dd>{{ type.description }}</dd>
22     {% endfor %}
23   </dl>
24 {% endspaceless %}