37 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
{#
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Default 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.
 | 
						|
 *   - url: URI to the admin section.
 | 
						|
 *   - options: URL options. See \Drupal\Core\Url::fromUri() for details.
 | 
						|
 * - 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()
 | 
						|
 *
 | 
						|
 * @ingroup themeable
 | 
						|
 */
 | 
						|
#}
 | 
						|
{%
 | 
						|
  set classes = [
 | 
						|
    'list-group',
 | 
						|
    compact ? 'compact',
 | 
						|
  ]
 | 
						|
%}
 | 
						|
{% if content %}
 | 
						|
  <dl{{ attributes.addClass(classes) }}>
 | 
						|
    {% for item in content %}
 | 
						|
      <dt class="list-group__link">{{ item.link }}</dt>
 | 
						|
      {% if item.description %}
 | 
						|
        <dd class="list-group__description">{{ item.description }}</dd>
 | 
						|
      {% endif %}
 | 
						|
    {% endfor %}
 | 
						|
  </dl>
 | 
						|
{% endif %}
 |