Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for page titles. Chris@0: * Chris@0: * Available variables: Chris@0: * - title_attributes: HTML attributes for the page title element. Chris@0: * - title_prefix: Additional output populated by modules, intended to be Chris@0: * displayed in front of the main title tag that appears in the template. Chris@0: * - title: The page title, for use in the actual content. Chris@0: * - title_suffix: Additional output populated by modules, intended to be Chris@0: * displayed after the main title tag that appears in the template. Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {{ title_prefix }} Chris@0: {% if title %} Chris@0: {{ title }} Chris@0: {% endif %} Chris@0: {{ title_suffix }}