templates/network/widget/widget.html.twig line 1

Open in your IDE?
  1. <div>
  2.   {% if title is defined and title %}
  3.     <h3 class="mb-5 text-lg font-medium uppercase font-headline text-neutral-600">
  4.       {{ title }}
  5.       {% if editlink is defined and editlink is not empty %}
  6.         <small class="underline lowercase">
  7.           <a data-turbo="false" href="{{ editlink }}">({{ 'edit'|trans }})</a>
  8.         </small>
  9.       {% endif %}
  10.     </h3>
  11.   {% endif %}
  12.   {% block content %}
  13.   {% endblock %}
  14. </div>