diff --git a/core/themes/seven/templates/admin-block-content.html.twig b/core/themes/seven/templates/admin-block-content.html.twig index ed60ff3..3594e04 100644 --- a/core/themes/seven/templates/admin-block-content.html.twig +++ b/core/themes/seven/templates/admin-block-content.html.twig @@ -8,7 +8,7 @@ * Available variables: * - content: List of administrative menu items. Each menu item contains: * - url: Path to the admin section. - * - label: Short name of the section. + * - title: Short name of the section. * - description: Description of the administrative menu item. * - attributes: HTML attributes to be added to the element. * @@ -19,7 +19,7 @@ {% if content %} {% for item in content %} -
  • {{ item.label }}
    {{ item.description }}
  • +
  • {{ item.title }}
    {{ item.description }}
  • {% endfor %} {% endif %}