DrupalX

Extension
Framework

title

You can use the title property to access the view's title:

{% set myview=View::load("products") %}
<div class="products">
  <h1>{{myview.title}}</h1>
  {{myview}}
</div>