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

    <f:layout name="BlogSidebar" />

    <f:section name="Content">
        {contentMain -> f:format.raw()}
    </f:section>

    <f:section name="Aside">
        <h1>Blog Posts by</h1>

        {f:render(partial: 'TopicList', arguments: {
            headline: 'Compatibility with TYPO3',
            topics: allTypo3Compatible
        })}

        {f:render(partial: 'TopicList', arguments: {
            headline: 'Topic',
            topics: allTopics
        })}
    </f:section>
</html>