ds-site/Resources/Private/Templates/ContentElements/Image.html
Daniel Siepmann 942d92334d Add link to full image version
Allow visitor to grep full image.
2019-11-28 18:06:19 +01:00

14 lines
505 B
HTML

<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
{f:layout(name: 'Default')}
<f:section name="Content">
<f:for each="{images}" as="image">
<figure>
<a href="{f:uri.image(image: image)}" target="_blank"><f:image image="{image}" maxWidth="1030" /></a>
<figcaption>Figure i{image.originalFile.uid}: {image.description}</figcaption>
</figure>
</f:for>
</f:section>
</html>