You are here

block--local-actions-block.html.twig in Drupal 8

Theme override for local actions (primary admin actions.)

File

core/themes/claro/templates/block--local-actions-block.html.twig
View source
  1. {% extends "@block/block.html.twig" %}
  2. {#
  3. /**
  4. * @file
  5. * Theme override for local actions (primary admin actions.)
  6. */
  7. #}
  8. {% block content %}
  9. {% if content %}
  10. <ul class="local-actions">
  11. {{ content }}
  12. </ul>
  13. {% endif %}
  14. {% endblock %}