page-title

Information

Folder
src/components/elements/page-title

Files

Schema
// src/components/elements/page-title/schema.yaml

$schema: http://json-schema.org/draft-07/schema#
$id: /elements/page-title
additionalProperties: false
type: object
properties:
  title:
    type: string
required:
  - title
Mocks
// src/components/elements/page-title/mocks.yaml

title: Page title
Template
// src/components/elements/page-title/page-title.twig

{% set content %}
	<h1>{{ title }}</h1>
{% endset %}
{% include "@patterns/rich-text/rich-text.twig" with {
	content: content
} only %}

Variants

default
Open

Page title