6.11.1 Page title with Component View in a new window

The h1 with a search combo box (or other component).

Twig: components/page-title/page-title-component.twig

Example

Staff listing

Markup
{% embed '@uts_theme/components/page-title/page-title.twig' with {
  title: 'Staff listing',
  modifier_class: 'page-title--component'
} only %}
  {% block component %}
    <div class="page-title__component">
      <form action="#">
        {% include '@uts_theme/form/input/input-combo.twig' %}
      </form>
    </div>
  {% endblock %}
{% endembed %}