> For the complete documentation index, see [llms.txt](https://developers.jseidl.at/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.jseidl.at/typo3/frontendlayouts-for-bodyclasses.md).

# Frontendlayouts for Bodyclasses

## PageTS <a href="#pagets" id="pagets"></a>

```typoscript
### 0 = Default
TCEFORM.pages.layout {
    addItems {
        1 = Features
        2 = Stories
        3 = Pricing
    }
    altLabels {
        1 = Features
        2 = Stories
        3 = Pricing
    }
}
```

## SetupTS <a href="#setupts" id="setupts"></a>

```typoscript
[page|layout = 1]
page.bodyTagCObject = COA
page.bodyTagCObject.wrap = <body class="features-page">
}
[end]
[page|layout = 2]
page.bodyTagCObject = COA
page.bodyTagCObject.wrap = <body class="stories-page">
}
[end]
[page|layout = 3]
page.bodyTagCObject = COA
page.bodyTagCObject.wrap = <body class="pricing-page">
}
[end]
```
