ds-site/Resources/Private/Layouts/Page/BlogPost.html

30 lines
834 B
HTML
Raw Normal View History

2020-01-08 21:03:54 +01:00
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
2020-01-10 16:39:13 +01:00
{f:render(partial: 'Header', arguments: _all) -> f:spaceless()}
2020-01-08 21:03:54 +01:00
<main>
<header>
<h1>Blog Post</h1>
</header>
<article>
{f:render(partial: 'BlogPostHeader', arguments: {
title: data.title,
blogPost : data,
compatibleWith: compatibleWith,
topics: assignedTopics,
addLinks: 1
2020-01-10 16:39:13 +01:00
}) -> f:spaceless()}
2020-01-08 21:03:54 +01:00
<aside>
2020-01-10 16:39:13 +01:00
{f:render(section: 'Aside', arguments: _all) -> f:spaceless()}
2020-01-08 21:03:54 +01:00
</aside>
{f:render(section: 'Content', arguments: _all)}
</article>
</main>
2020-01-10 16:39:13 +01:00
{f:render(partial: 'Footer', arguments: _all) -> f:spaceless()}
2020-01-08 21:03:54 +01:00
</html>