Files
DrupalTutorial/themes/bootstrap/templates/block/block--local-actions-block.html.twig
2024-07-15 12:33:27 +02:00

15 lines
276 B
Twig

{% extends "block--bare.html.twig" %}
{#
/**
* @file
* Theme override for local actions (primary admin actions.)
*
* @ingroup templates
*/
#}
{% block content %}
{% if content %}
<ul class="list-inline local-actions">{{ content }}</ul>
{% endif %}
{% endblock %}