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