30 lines
766 B
HTML
30 lines
766 B
HTML
|
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
||
|
data-namespace-typo3-fluid="true">
|
||
|
|
||
|
{f:render(partial: 'Header', arguments: _all)}
|
||
|
|
||
|
<main>
|
||
|
<header>
|
||
|
<h1>Blog Post</h1>
|
||
|
</header>
|
||
|
|
||
|
<article>
|
||
|
{f:render(partial: 'BlogPostHeader', arguments: {
|
||
|
title: data.title,
|
||
|
blogPost : data,
|
||
|
compatibleWith: compatibleWith,
|
||
|
topics: assignedTopics,
|
||
|
addLinks: 1
|
||
|
})}
|
||
|
|
||
|
<aside>
|
||
|
{f:render(section: 'Aside', arguments: _all)}
|
||
|
</aside>
|
||
|
|
||
|
{f:render(section: 'Content', arguments: _all)}
|
||
|
</article>
|
||
|
</main>
|
||
|
|
||
|
{f:render(partial: 'Footer', arguments: _all)}
|
||
|
</html>
|