2019-11-13 23:40:26 +01:00
|
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
|
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
|
2020-01-27 13:27:21 +01:00
|
|
|
<f:layout name="Content" />
|
|
|
|
|
|
|
|
<f:section name="Header">
|
|
|
|
Blog Post
|
|
|
|
</f:section>
|
|
|
|
|
|
|
|
<f:section name="ContentHeader">
|
|
|
|
{f:render(partial: 'BlogPostHeader', arguments: {
|
|
|
|
title: data.title,
|
|
|
|
blogPost : data,
|
|
|
|
compatibleWith: compatibleWith,
|
|
|
|
topics: assignedTopics,
|
|
|
|
addLinks: 1
|
|
|
|
})}
|
|
|
|
</f:section>
|
2019-11-13 23:40:26 +01:00
|
|
|
|
|
|
|
<f:section name="Content">
|
2020-01-08 21:03:54 +01:00
|
|
|
<main>
|
2019-11-15 00:27:23 +01:00
|
|
|
<a name="introduction"></a>
|
|
|
|
<h2>Introduction <small><a href="#introduction">¶</a></small></h2>
|
2020-01-30 11:28:14 +01:00
|
|
|
{data.abstract -> f:format.html(parseFuncTSPath: 'lib.parseFunc_abstract')}
|
2019-11-13 23:40:26 +01:00
|
|
|
{introduction -> f:format.raw()}
|
|
|
|
|
2019-12-13 13:27:25 +01:00
|
|
|
<f:if condition="{media.0}">
|
|
|
|
{f:render(partial: 'Image', arguments: {image: media.0})}
|
|
|
|
</f:if>
|
|
|
|
|
2019-11-13 23:40:26 +01:00
|
|
|
{contentMain -> f:format.raw()}
|
|
|
|
|
2019-11-15 13:17:22 +01:00
|
|
|
<f:if condition="{acknowledgements}">
|
|
|
|
<a name="acknowledgements"></a>
|
|
|
|
<h2>Acknowledgements <small><a href="#acknowledgements">¶</a></small></h2>
|
|
|
|
{acknowledgements -> f:format.raw()}
|
|
|
|
</f:if>
|
|
|
|
|
|
|
|
<f:if condition="{furtherReading}">
|
|
|
|
<a name="furtherReading"></a>
|
|
|
|
<h2>Further reading <small><a href="#furtherReading">¶</a></small></h2>
|
|
|
|
{furtherReading -> f:format.raw()}
|
|
|
|
</f:if>
|
2020-01-08 21:03:54 +01:00
|
|
|
</main>
|
2019-11-13 23:40:26 +01:00
|
|
|
</f:section>
|
|
|
|
|
|
|
|
<f:section name="Aside">
|
2019-11-15 00:27:23 +01:00
|
|
|
<nav>
|
|
|
|
<h1>Table of Content</h1>
|
2020-01-08 21:03:54 +01:00
|
|
|
<ol>
|
2019-11-15 00:27:23 +01:00
|
|
|
<li>
|
|
|
|
<a href="#introduction">Introduction</a>
|
|
|
|
</li>
|
|
|
|
<f:alias map="{contentSections: pageSections.0.content}">
|
|
|
|
<f:for each="{contentSections}" as="contentEntry">
|
2019-12-13 16:41:49 +01:00
|
|
|
<f:if condition="{contentEntry.data.header}">
|
|
|
|
<li>
|
|
|
|
<a href="#c{contentEntry.data.uid}">{contentEntry.data.header}</a>
|
|
|
|
</li>
|
|
|
|
</f:if>
|
2019-11-15 00:27:23 +01:00
|
|
|
</f:for>
|
|
|
|
</f:alias>
|
2019-11-15 13:17:22 +01:00
|
|
|
<f:if condition="{acknowledgements}">
|
|
|
|
<li>
|
|
|
|
<a href="#acknowledgements">Acknowledgements</a>
|
|
|
|
</li>
|
|
|
|
</f:if>
|
|
|
|
<f:if condition="{furtherReading}">
|
|
|
|
<li>
|
|
|
|
<a href="#furtherReading">Further reading</a>
|
|
|
|
</li>
|
|
|
|
</f:if>
|
2020-01-08 21:03:54 +01:00
|
|
|
</ol>
|
2019-11-15 00:27:23 +01:00
|
|
|
</nav>
|
2019-11-13 23:40:26 +01:00
|
|
|
</f:section>
|
|
|
|
</html>
|