ds-site/Resources/Private/Templates/Page/Default.html
Daniel Siepmann 14edd5b8c1 Add further work
E.g. add rss feed and sitemap and seo meta tags.
2019-11-15 18:28:10 +01:00

25 lines
625 B
HTML

<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
<f:layout name="Default" />
<f:section name="Content">
<header>
<h1>{data.title}</h1>
</header>
{contentMain -> f:format.raw()}
</f:section>
<f:section name="Aside">
{f:render(partial: 'TopicList', arguments: {
headline: 'Compatible with TYPO3',
topics: allTypo3Compatible
})}
{f:render(partial: 'TopicList', arguments: {
headline: 'Topics',
topics: allTopics
})}
</f:section>
</html>