templates/Admin/Inline/Portlet/head.html.twig line 1

Open in your IDE?
  1. <div class="kt-portlet__head kt-portlet__head--lg {% block portlet_class %}{% endblock %}">
  2.     {% if icon|default('true') == 'true' or title|default('true') == 'true' %}
  3.         <div class="kt-portlet__head-label">
  4.             {% if icon|default('true') == 'true' %}
  5.                 <span class="kt-portlet__head-icon">{% block portlet_icon %}{% endblock %}</span>
  6.             {% endif %}
  7.             {% if title|default('true') == 'true' %}
  8.                 <h3 class="kt-portlet__head-title">{% block portlet_title %}{% endblock %} <small>{% block portlet_subline %}{% endblock %}</small></h3>
  9.             {% endif %}
  10.         </div>
  11.     {% endif %}
  12.     {% if toolbar|default('true') == 'true' %}
  13.         <div class="kt-portlet__head-toolbar">
  14.             {% block portlet_content %}{% endblock %}
  15.         </div>
  16.     {% endif %}
  17. </div>