19 lines
556 B
HTML
19 lines
556 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
{f:layout(name: 'Default')}
|
|
|
|
<f:section name="Header">
|
|
{f:render(partial: 'Header', arguments: {
|
|
uid: data.uid,
|
|
layout: headerLayout,
|
|
header: '{data.header} {topic.0.data.title}'
|
|
})}
|
|
</f:section>
|
|
|
|
<f:section name="Content">
|
|
<f:for each="{menu}" as="page">
|
|
{f:render(partial: 'Menu/BlogPostAbstract', arguments: {page: page})}
|
|
</f:for>
|
|
</f:section>
|
|
</html>
|