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

17 lines
282 B
Twig

{% extends "block--bare.html.twig" %}
{#
/**
* @file
* Theme override for tabs.
*
* @ingroup templates
*/
#}
{% block content %}
{% if content %}
<nav class="tabs" role="navigation" aria-label="{{ 'Tabs'|t }}">
{{ content }}
</nav>
{% endif %}
{% endblock %}