15 lines
251 B
Twig
15 lines
251 B
Twig
{% extends "@block/block.html.twig" %}
|
|
{#
|
|
/**
|
|
* @file
|
|
* Theme override for local actions (primary admin actions.)
|
|
*/
|
|
#}
|
|
{% block content %}
|
|
{% if content %}
|
|
<ul class="action-links">
|
|
{{ content }}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|