# Page: Title

Similar to the headings, the Page title is only for usage as the Drupal page title

### Available Properties:

**Display (`display`):**

When you need a heading to stand out, consider using a display heading—a larger, slightly more opinionated heading style. optional values are: ( display-1, display-2, display-3, display-4, display-5, display-6) <https://getbootstrap.com/docs/5.3/content/typography/#display-headings>

**Utility Classes (`page_title_utility_classes`):**

This property contains an array of utility classes that can be used to add extra Bootstrap utility classes or custom classes to this component.

### Examples

Used in the `page-title.html.twig` default theme implementation for a page title.

**Example #1:** Normal Page title

```twig
{% include 'radix:page-title' %}
```

**Example #2:** Have a Bootstrap display class with the page title.

```twig
{% include 'radix:page-title' with {
    display: 'display-1'
  }
%}
```

**Example #3:** Have a custom title class with the page title.

```twig
{% include 'radix:page-title' with {
    page_title_utility_classes: ['custom-section-title1', 'custom-title2']
  }
%}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.trydrupal.com/radix/components/page-title.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
