Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / themes / stable / templates / content / page-title.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for page titles.
5  *
6  * Available variables:
7  * - title_attributes: HTML attributes for the page title element.
8  * - title_prefix: Additional output populated by modules, intended to be
9  *   displayed in front of the main title tag that appears in the template.
10  * - title: The page title, for use in the actual content.
11  * - title_suffix: Additional output populated by modules, intended to be
12  *   displayed after the main title tag that appears in the template.
13  */
14 #}
15 {{ title_prefix }}
16 {% if title %}
17   <h1{{ title_attributes }}>{{ title }}</h1>
18 {% endif %}
19 {{ title_suffix }}