ds-site/Resources/Private/Templates/Page/Default.html
Daniel Siepmann 0cee75ceb5 Add proper layout handling
Provide "normal" content pages.
2020-01-27 13:27:21 +01:00

23 lines
593 B
HTML

<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>