ds-site/Resources/Private/Partials/Menu/Page.html

22 lines
655 B
HTML
Raw Normal View History

2019-11-13 23:40:26 +01:00
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
2019-11-15 00:27:23 +01:00
<article>
2019-11-15 13:17:22 +01:00
{f:render(partial: 'BlogPostHeader', arguments: {
link: page.link,
title: page.title,
blogPost : page.data,
compatibleWith: page.compatibleWith,
topics: page.topics
2019-11-15 13:17:22 +01:00
})}
2019-11-13 23:40:26 +01:00
2019-11-15 00:27:23 +01:00
{page.data.abstract -> f:format.html()}
<f:if condition="{page.media.0}">
{f:render(partial: 'Image', arguments: {image: page.media.0})}
</f:if>
2019-11-15 00:27:23 +01:00
<footer>
<p><a href="{page.link}">Read more …</a></p>
</footer>
</article>
2019-11-13 23:40:26 +01:00
</html>