claro-8.x-1.x-dev/templates/admin/admin-block-content.html.twig
templates/admin/admin-block-content.html.twig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {# /** * @file * Claro's theme implementation for the content of an administrative block. * * Available variables: * - content: List of administrative menu items. Each menu item contains: * - link: Link to the admin section. * - title: Short name of the section. * - description: Description of the administrative menu item. * - attributes: HTML attributes to be added to the element. * - compact: Boolean indicating whether compact mode is turned on or not. * * @see template_preprocess_admin_block_content() * @see claro_preprocess_admin_block_content() */ #} {% set item_classes = [ 'admin-item' , ] %} {% if content %} <dl{{ attributes.addClass( 'admin-list' ) }}> {% for item in content %} <div{{ create_attribute({ class : item_classes}) }}> <dt class = "admin-item__title" >{{ item.link }}</dt> {% if item.description %} <dd class = "admin-item__description" >{{ item.description }}</dd> {% endif %} </div> {% endfor %} </dl> {% endif %} |