<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
    data-namespace-typo3-fluid="true">

    {f:render(partial: 'Header', arguments: _all) -> f:spaceless()}

    <main>
        <header>
            <h1>{data.title}</h1>
        </header>

        <section>
            {f:render(section: 'Content', arguments: _all) -> f:spaceless()}
        </section>

        <aside>
            {f:render(section: 'Aside', arguments: _all) -> f:spaceless()}
        </aside>
    </main>

    {f:render(partial: 'Footer', arguments: _all)}
</html>