Add backend preview renderer for booking link teaser

This commit is contained in:
Björn Fromme
2021-09-30 17:27:38 +02:00
parent 94520a76c2
commit f319a0450c
3 changed files with 46 additions and 0 deletions
@@ -0,0 +1,23 @@
{namespace be=TYPO3\CMS\Backend\ViewHelpers}
<div class="row">
<div class="col-xs-12">
<p>
<strong>Teaser Buchungslink</strong>
</p>
<p>
<f:if condition="{images.0}">
<f:then>
<f:image image="{images.0.originalFile}" width="200" height="80c" />
</f:then>
<f:else>
<f:image src="EXT:ep_theme/Resources/Public/images/lazy.png" width="200" height="80c"/>
</f:else>
</f:if>
</p>
<strong>
{product.name}
</strong>
<br>
{product.teaser -> f:format.html()}
</div>
</div>