---
title: "Feature: #88276 - TypoScript Condition for page layout"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-88276"
source: "Changelog/11.0/Feature-88276-TypoScriptConditionForPageLayout.rst"
typo3-version: "11.0"
typo3-major: 11
type: "feature"
issue: 88276
forge: "https://forge.typo3.org/issues/88276"
tags: ["Frontend", "Backend", "TypoScript", "ext:frontend"]
rendered: "2026-09-23T19:53:57+00:00"
---

# Feature: #88276 - TypoScript Condition for page layout {#feature-88276}

See [forge#88276](https://forge.typo3.org/issues/88276)

## Description {#description}

A new condition enables integrators to check for the defined backend layout of a page including the
inheritance of the field *Backend Layout (subpages of this page)*

```typoscript
# Using backend_layout records
[tree.pagelayout == 2]
    page.1 = TEXT
    page.1.value = Layout 2
[END]

# Using TsConfig provider of Backend Layouts
[tree.pagelayout == "pagets__Home"]
    page.1 = TEXT
    page.1.value = Layout Home
[END]
```

This condition is available for both frontend and backend.

## Impact {#impact}

Change TypoScript or TsConfig based on the backend layout of a page.
