ui/twig/common/dashboard/sidebar/editor/header.html.twig line 1

Open in your IDE?
  1. {% set htmlId = _args.htmlId|default(null) %}
  2. {% set title = _args.title %}
  3. {% set subtitle = _args.subtitle|default(null) %}
  4. <div class="editor__side-header"{% if htmlId is not empty %} id="{{ htmlId }}"{% endif %}>
  5.     <div class="editor__side-header-title">{{ title }}</div>
  6.     {% if subtitle is not empty %}
  7.         <div class="editor__side-header-meta">
  8.             <p class="truncate">{{ subtitle }}</p>
  9.         </div>
  10.     {% endif %}
  11. </div>