Daniel Siepmann
941e7c5229
As images would add a priority to specific blog posts. But we want all blog posts to be the same.
19 lines
597 B
HTML
19 lines
597 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<article>
|
|
{f:render(partial: 'BlogPostHeader', arguments: {
|
|
link: page.link,
|
|
title: page.title,
|
|
blogPost : page.data,
|
|
compatibleWith: page.compatibleWith,
|
|
topics: page.topics
|
|
})}
|
|
|
|
<main>
|
|
{page.data.abstract -> f:format.html(parseFuncTSPath: 'lib.parseFunc_abstract')}
|
|
</main>
|
|
|
|
<footer>
|
|
<p><a href="{page.link}">Read more …</a></p>
|
|
</footer>
|
|
</article>
|
|
</html>
|