Mercurial > hg > cmmr2012-drupal-site
view core/modules/system/templates/page-title.html.twig @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
line wrap: on
line source
{# /** * @file * Default theme implementation for page titles. * * Available variables: * - title_attributes: HTML attributes for the page title element. * - title_prefix: Additional output populated by modules, intended to be * displayed in front of the main title tag that appears in the template. * - title: The page title, for use in the actual content. * - title_suffix: Additional output populated by modules, intended to be * displayed after the main title tag that appears in the template. * * @ingroup themeable */ #} {{ title_prefix }} {% if title %} <h1{{ title_attributes }}>{{ title }}</h1> {% endif %} {{ title_suffix }}