Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / themes / contrib / bootstrap / templates / system / page-title.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation 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  * @ingroup templates
15  *
16  * @see template_preprocess_page_title()
17  */
18 #}
19 {% if title %}
20   <h1{{ title_attributes.addClass('page-header') }}>{{ title }}</h1>
21 {% endif %}