TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" datatype="plaintext" original="EXT:fluid_styled_content/Resources/Private/Language/locallang.xlf" date="2014-02-07T20:22:32Z" product-name="fluid_styled_content">
|
||||
<header/>
|
||||
<body>
|
||||
<trans-unit id="toTop">
|
||||
<source>To top</source>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
@@ -0,0 +1,53 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{data.frame_class} != none">
|
||||
<f:then>
|
||||
|
||||
<div id="c{data.uid}" class="frame frame-{data.frame_class} frame-type-{data.CType} frame-layout-{data.layout}{f:if(condition: data.space_before_class, then: ' frame-space-before-{data.space_before_class}')}{f:if(condition: data.space_after_class, then: ' frame-space-after-{data.space_after_class}')}">
|
||||
<f:if condition="{data._LOCALIZED_UID}">
|
||||
<a id="c{data._LOCALIZED_UID}"></a>
|
||||
</f:if>
|
||||
<f:render section="Before" optional="true">
|
||||
<f:render partial="DropIn/Before/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:render section="Header" optional="true">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:render section="Main" optional="true" />
|
||||
<f:render section="Footer" optional="true">
|
||||
<f:render partial="Footer/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:render section="After" optional="true">
|
||||
<f:render partial="DropIn/After/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
</div>
|
||||
|
||||
</f:then>
|
||||
<f:else>
|
||||
|
||||
<a id="c{data.uid}"></a>
|
||||
<f:if condition="{data._LOCALIZED_UID}">
|
||||
<a id="c{data._LOCALIZED_UID}"></a>
|
||||
</f:if>
|
||||
<f:if condition="{data.space_before_class}">
|
||||
<div class="frame-space-before-{data.space_before_class}"></div>
|
||||
</f:if>
|
||||
<f:render section="Before" optional="true">
|
||||
<f:render partial="DropIn/Before/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:render section="Header" optional="true">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:render section="Main" optional="true" />
|
||||
<f:render section="Footer" optional="true">
|
||||
<f:render partial="Footer/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:render section="After" optional="true">
|
||||
<f:render partial="DropIn/After/All" arguments="{_all}" />
|
||||
</f:render>
|
||||
<f:if condition="{data.space_after_class}">
|
||||
<div class="frame-space-after-{data.space_after_class}"></div>
|
||||
</f:if>
|
||||
|
||||
</f:else>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:ce="http://typo3.org/ns/TYPO3/CMS/FluidStyledContent/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{bullets}">
|
||||
<ul class="ce-bullets">
|
||||
<f:for each="{bullets}" as="bullet">
|
||||
<li>{bullet}</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:ce="http://typo3.org/ns/TYPO3/CMS/FluidStyledContent/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{bullets}">
|
||||
<ol class="ce-bullets">
|
||||
<f:for each="{bullets}" as="bullet">
|
||||
<li>{bullet}</li>
|
||||
</f:for>
|
||||
</ol>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:ce="http://typo3.org/ns/TYPO3/CMS/FluidStyledContent/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{bullets}">
|
||||
<dl class="ce-bullets">
|
||||
<f:for each="{bullets}" as="definitionListItem">
|
||||
<f:for each="{definitionListItem}" as="termDescription" iteration="termDescriptionIterator">
|
||||
<f:if condition="{termDescriptionIterator.isFirst}">
|
||||
<f:then>
|
||||
<dt>{termDescription}</dt>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<dd>{termDescription}</dd>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</f:for>
|
||||
</dl>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:comment>DropIn Placeholder. Will be rendered after all other output inside the wrapping container.</f:comment>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:comment>DropIn Placeholder. Will be rendered before any other output inside the wrapping container.</f:comment>
|
||||
</html>
|
||||
@@ -0,0 +1,7 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{data.linkToTop}">
|
||||
<p>
|
||||
<a href="#top"><f:translate key="toTop" extensionName="fluid_styled_content" /></a>
|
||||
</p>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,24 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{data.header_layout} != 100">
|
||||
<f:variable name="header">{record -> f:render.text(field: 'header', optional: true)}</f:variable>
|
||||
<f:variable name="subheader">{record -> f:render.text(field: 'subheader', optional: true)}</f:variable>
|
||||
<f:if condition="{header} || {subheader} || {data.date}">
|
||||
<header>
|
||||
<f:render partial="Header/Header" arguments="{
|
||||
header: header,
|
||||
layout: data.header_layout,
|
||||
positionClass: '{f:if(condition: data.header_position, then: \'ce-headline-{data.header_position}\')}',
|
||||
link: data.header_link,
|
||||
default: settings.defaultHeaderType}" />
|
||||
<f:render partial="Header/SubHeader" arguments="{
|
||||
subheader: subheader,
|
||||
layout: data.header_layout,
|
||||
positionClass: '{f:if(condition: data.header_position, then: \'ce-headline-{data.header_position}\')}',
|
||||
default: settings.defaultHeaderType}" />
|
||||
<f:render partial="Header/Date" arguments="{
|
||||
date: data.date,
|
||||
positionClass: '{f:if(condition: data.header_position, then: \'ce-headline-{data.header_position}\')}'}" />
|
||||
</header>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{date}">
|
||||
<p class="{positionClass}">
|
||||
<time datetime="{date -> f:format.date(format: '%Y-%m-%d')}">
|
||||
<f:format.date format="%B %e, %Y">{date}</f:format.date>
|
||||
</time>
|
||||
</p>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,48 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{header}">
|
||||
<f:switch expression="{layout}">
|
||||
<f:case value="1">
|
||||
<h1 class="{positionClass}">
|
||||
<f:link.typolink parameter="{link}">{header}</f:link.typolink>
|
||||
</h1>
|
||||
</f:case>
|
||||
<f:case value="2">
|
||||
<h2 class="{positionClass}">
|
||||
<f:link.typolink parameter="{link}">{header}</f:link.typolink>
|
||||
</h2>
|
||||
</f:case>
|
||||
<f:case value="3">
|
||||
<h3 class="{positionClass}">
|
||||
<f:link.typolink parameter="{link}">{header}</f:link.typolink>
|
||||
</h3>
|
||||
</f:case>
|
||||
<f:case value="4">
|
||||
<h4 class="{positionClass}">
|
||||
<f:link.typolink parameter="{link}">{header}</f:link.typolink>
|
||||
</h4>
|
||||
</f:case>
|
||||
<f:case value="5">
|
||||
<h5 class="{positionClass}">
|
||||
<f:link.typolink parameter="{link}">{header}</f:link.typolink>
|
||||
</h5>
|
||||
</f:case>
|
||||
<f:case value="6">
|
||||
<h6 class="{positionClass}">
|
||||
<f:link.typolink parameter="{link}">{header}</f:link.typolink>
|
||||
</h6>
|
||||
</f:case>
|
||||
<f:case value="100">
|
||||
<f:comment> -- do not show header -- </f:comment>
|
||||
</f:case>
|
||||
<f:defaultCase>
|
||||
<f:if condition="{default}">
|
||||
<f:render partial="Header/Header" arguments="{
|
||||
header: header,
|
||||
layout: default,
|
||||
positionClass: positionClass,
|
||||
link: link}" />
|
||||
</f:if>
|
||||
</f:defaultCase>
|
||||
</f:switch>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,39 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{subheader}">
|
||||
<f:switch expression="{layout}">
|
||||
<f:case value="1">
|
||||
<h2 class="{positionClass}">
|
||||
{subheader}
|
||||
</h2>
|
||||
</f:case>
|
||||
<f:case value="2">
|
||||
<h3 class="{positionClass}">
|
||||
{subheader}
|
||||
</h3>
|
||||
</f:case>
|
||||
<f:case value="3">
|
||||
<h4 class="{positionClass}">
|
||||
{subheader}
|
||||
</h4>
|
||||
</f:case>
|
||||
<f:case value="4">
|
||||
<h5 class="{positionClass}">
|
||||
{subheader}
|
||||
</h5>
|
||||
</f:case>
|
||||
<f:case value="5">
|
||||
<h6 class="{positionClass}">
|
||||
{subheader}
|
||||
</h6>
|
||||
</f:case>
|
||||
<f:defaultCase>
|
||||
<f:if condition="{default}">
|
||||
<f:render partial="Header/SubHeader" arguments="{
|
||||
subheader: subheader,
|
||||
positionClass: positionClass,
|
||||
layout: default}" />
|
||||
</f:if>
|
||||
</f:defaultCase>
|
||||
</f:switch>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,25 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:ce="http://typo3.org/ns/TYPO3/CMS/FluidStyledContent/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{gallery.rows}">
|
||||
<div class="ce-gallery{f:if(condition: data.imageborder, then: ' ce-border')}" data-ce-columns="{gallery.count.columns}" data-ce-images="{gallery.count.files}">
|
||||
<f:if condition="{gallery.position.horizontal} == 'center'">
|
||||
<div class="ce-outer">
|
||||
<div class="ce-inner">
|
||||
</f:if>
|
||||
<f:for each="{gallery.rows}" as="row">
|
||||
<div class="ce-row">
|
||||
<f:for each="{row.columns}" as="column">
|
||||
<f:if condition="{column.media}">
|
||||
<div class="ce-column">
|
||||
<f:render partial="Media/Type" arguments="{file: column.media, dimensions: column.dimensions, data: data, settings: settings}" />
|
||||
</div>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</div>
|
||||
</f:for>
|
||||
<f:if condition="{gallery.position.horizontal} == 'center'">
|
||||
</div>
|
||||
</div>
|
||||
</f:if>
|
||||
</div>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:media class="audio-embed-item" file="{file}" width="{dimensions.width}" height="{dimensions.height}" alt="{file.alternative}" title="{file.title}" />
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:media class="image-embed-item" file="{file}" width="{dimensions.width}" height="{dimensions.height}" alt="{file.alternative}" title="{file.title}" loading="{settings.media.lazyLoading}" decoding="{settings.media.imageDecoding}" />
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:media class="video-embed-item" file="{file}" width="{dimensions.width}" height="{dimensions.height}" alt="{file.alternative}" title="{file.title}" additionalConfig="{settings.media.additionalConfig}" />
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:switch expression="{file.type}">
|
||||
<f:case value="3">
|
||||
<f:render partial="Media/Type/Audio" arguments="{file: file, dimensions: dimensions, data: data, settings: settings}" />
|
||||
</f:case>
|
||||
<f:case value="4">
|
||||
<f:render partial="Media/Type/Video" arguments="{file: file, dimensions: dimensions, data: data, settings: settings}" />
|
||||
</f:case>
|
||||
<f:defaultCase>
|
||||
<f:render partial="Media/Type/Image" arguments="{file: file, dimensions: dimensions, data: data, settings: settings}" />
|
||||
</f:defaultCase>
|
||||
</f:switch>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<figure class="audio">
|
||||
<div class="audio-embed">
|
||||
<f:render partial="Media/Rendering/Audio" arguments="{file: file, dimensions: dimensions, settings: settings}" />
|
||||
</div>
|
||||
<f:if condition="{file.description}">
|
||||
<figcaption class="audio-caption">
|
||||
{file.description -> f:format.nl2br()}
|
||||
</figcaption>
|
||||
</f:if>
|
||||
</figure>
|
||||
</html>
|
||||
@@ -0,0 +1,28 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:ce="http://typo3.org/ns/TYPO3/CMS/FluidStyledContent/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<figure class="image">
|
||||
<f:if condition="{file.link}">
|
||||
<f:then>
|
||||
<f:link.typolink parameter="{file.link}" title="{file.title}">
|
||||
<f:render partial="Media/Rendering/Image" arguments="{file: file, dimensions: dimensions, settings: settings}" />
|
||||
</f:link.typolink>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{data.image_zoom}">
|
||||
<f:then>
|
||||
<ce:link.clickEnlarge image="{file}" configuration="{settings.media.popup}">
|
||||
<f:render partial="Media/Rendering/Image" arguments="{file: file, dimensions: dimensions, settings: settings}" />
|
||||
</ce:link.clickEnlarge>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:render partial="Media/Rendering/Image" arguments="{file: file, dimensions: dimensions, settings: settings}" />
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
<f:if condition="{file.description}">
|
||||
<figcaption class="image-caption">
|
||||
{file.description -> f:format.nl2br()}
|
||||
</figcaption>
|
||||
</f:if>
|
||||
</figure>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<figure class="video">
|
||||
<div class="video-embed">
|
||||
<f:render partial="Media/Rendering/Video" arguments="{file: file, dimensions: dimensions, settings: settings}" />
|
||||
</div>
|
||||
<f:if condition="{file.description}">
|
||||
<figcaption class="video-caption">
|
||||
{file.description -> f:format.nl2br()}
|
||||
</figcaption>
|
||||
</f:if>
|
||||
</figure>
|
||||
</html>
|
||||
@@ -0,0 +1,98 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:if condition="{rowIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 1">
|
||||
<f:then>
|
||||
<th>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{columnIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 2">
|
||||
<f:then>
|
||||
<th>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{columnIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 2">
|
||||
<f:then>
|
||||
<th>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
|
||||
<f:if condition="{cell} != ''">
|
||||
<f:then>
|
||||
{cell -> f:format.nl2br()}
|
||||
</f:then>
|
||||
<f:else>
|
||||
|
||||
</f:else>
|
||||
</f:if>
|
||||
|
||||
<f:if condition="{rowIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 1">
|
||||
<f:then>
|
||||
</th>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{columnIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 2">
|
||||
<f:then>
|
||||
</th>
|
||||
</f:then>
|
||||
<f:else>
|
||||
</td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
</td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{columnIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 2">
|
||||
<f:then>
|
||||
</th>
|
||||
</f:then>
|
||||
<f:else>
|
||||
</td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
</td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:render partial="Bullets/Type-{data.bullets_type}" arguments="{_all}" />
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Header" />
|
||||
<f:section name="Main">
|
||||
|
||||
<hr class="ce-div" />
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:comment>This templates is used to provide necessary functionality for external processed content and could be used across multiple sources, for example the frontend login content element.</f:comment>
|
||||
<f:if condition="{content}">
|
||||
<f:then>{content -> f:format.raw()}</f:then>
|
||||
<f:else><f:cObject typoscriptObjectPath="tt_content.{data.CType}.20" data="{data}" table="tt_content" /></f:else>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Header" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:format.raw>{data.bodytext}</f:format.raw>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,10 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<div class="ce-image ce-{gallery.position.horizontal} ce-{gallery.position.vertical}">
|
||||
<f:render partial="Media/Gallery" arguments="{_all}" />
|
||||
</div>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,21 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
<f:if condition="{page.data.abstract}">
|
||||
<f:format.html>{page.data.abstract}</f:format.html>
|
||||
</f:if>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{content}">
|
||||
<ul>
|
||||
<f:for each="{content}" as="element">
|
||||
<li>
|
||||
<f:link.page pageUid="{element.data.pid}" section="{element.data.uid}" title="{element.data.header}">
|
||||
<span>{element.data.header}</span>
|
||||
</f:link.page>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,17 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,31 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
<f:if condition="{page.content}">
|
||||
<ul>
|
||||
<f:for each="{page.content}" as="element">
|
||||
<f:if condition="{element.data.header}">
|
||||
<li>
|
||||
<a href="{page.link}#c{element.data.uid}"{f:if(condition: page.target, then: ' target="{page.target}"')} title="{element.data.header}">
|
||||
<span>{element.data.header}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,29 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
<f:if condition="{page.content}">
|
||||
<ul>
|
||||
<f:for each="{page.content}" as="element">
|
||||
<li>
|
||||
<a href="{page.link}#c{element.data.uid}"{f:if(condition: page.target, then: ' target="{page.target}"')} title="{element.data.header}">
|
||||
<span>{element.data.header}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,24 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:render section="Menu" arguments="{menu: menu}" />
|
||||
|
||||
</f:section>
|
||||
<f:section name="Menu">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
<f:render section="Menu" arguments="{menu: page.children}" />
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,24 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:render section="Menu" arguments="{menu: menu}" />
|
||||
|
||||
</f:section>
|
||||
<f:section name="Menu">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
<f:render section="Menu" arguments="{menu: page.children}" />
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{menu}">
|
||||
<ul>
|
||||
<f:for each="{menu}" as="page">
|
||||
<li>
|
||||
<a href="{page.link}"{f:if(condition: page.target, then: ' target="{page.target}"')}{f:if(condition: page.current, then: ' aria-current="page"')} title="{page.title}">
|
||||
<span>{page.title}</span>
|
||||
</a>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Header" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:format.raw>{shortcuts}</f:format.raw>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,62 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{table}">
|
||||
<table class="ce-table{f:if(condition: data.table_class, then: ' ce-table-{data.table_class}')}">
|
||||
<f:variable name="table_caption">{record -> f:render.text(field:'table_caption')}</f:variable>
|
||||
<f:if condition="{table_caption}">
|
||||
<caption>{table_caption}</caption>
|
||||
</f:if>
|
||||
<f:for each="{table}" as="row" iteration="rowIterator">
|
||||
<f:if condition="{rowIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 1">
|
||||
<f:then>
|
||||
<thead>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<tbody>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{rowIterator.isLast}">
|
||||
<f:if condition="{data.table_tfoot}">
|
||||
</tbody>
|
||||
<tfoot>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
<tr>
|
||||
<f:for each="{row}" as="cell" iteration="columnIterator">
|
||||
<f:render partial="Table/Columns" arguments="{_all}" />
|
||||
</f:for>
|
||||
</tr>
|
||||
<f:if condition="{rowIterator.isFirst}">
|
||||
<f:then>
|
||||
<f:if condition="{data.table_header_position} == 1">
|
||||
</thead>
|
||||
<tbody>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{rowIterator.isLast}">
|
||||
<f:if condition="{data.table_tfoot}">
|
||||
<f:then>
|
||||
</tfoot>
|
||||
</f:then>
|
||||
<f:else>
|
||||
</tbody>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</table>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
{record -> f:render.text(field: 'bodytext')}
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,45 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Header">
|
||||
|
||||
<f:if condition="{gallery.position.noWrap} != 1">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
<f:section name="Main">
|
||||
|
||||
<div class="ce-textpic ce-{gallery.position.horizontal} ce-{gallery.position.vertical}{f:if(condition: gallery.position.noWrap, then: ' ce-nowrap')}">
|
||||
<f:if condition="{gallery.position.vertical} != 'below'">
|
||||
<f:render partial="Media/Gallery" arguments="{_all}" />
|
||||
</f:if>
|
||||
|
||||
<f:variable name="bodytext">{record -> f:render.text(field: 'bodytext')}</f:variable>
|
||||
<f:if condition="{bodytext}">
|
||||
<f:then>
|
||||
<div class="ce-bodytext">
|
||||
<f:if condition="{gallery.position.noWrap}">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</f:if>
|
||||
{bodytext}
|
||||
</div>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{gallery.position.noWrap}">
|
||||
<f:variable name="header">{record -> f:render.text(field: 'header')}</f:variable>
|
||||
<f:if condition="{header}">
|
||||
<div class="ce-bodytext">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</div>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
|
||||
<f:if condition="{gallery.position.vertical} == 'below'">
|
||||
<f:render partial="Media/Gallery" arguments="{_all}" />
|
||||
</f:if>
|
||||
</div>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,45 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Header">
|
||||
|
||||
<f:if condition="{gallery.position.noWrap} != 1">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
<f:section name="Main">
|
||||
|
||||
<div class="ce-textpic ce-{gallery.position.horizontal} ce-{gallery.position.vertical}{f:if(condition: gallery.position.noWrap, then: ' ce-nowrap')}">
|
||||
<f:if condition="{gallery.position.vertical} != 'below'">
|
||||
<f:render partial="Media/Gallery" arguments="{_all}" />
|
||||
</f:if>
|
||||
|
||||
<f:variable name="bodytext">{record -> f:render.text(field: 'bodytext')}</f:variable>
|
||||
<f:if condition="{bodytext}">
|
||||
<f:then>
|
||||
<div class="ce-bodytext">
|
||||
<f:if condition="{gallery.position.noWrap}">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</f:if>
|
||||
{bodytext}
|
||||
</div>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{gallery.position.noWrap}">
|
||||
<f:variable name="header">{record -> f:render.text(field: 'header')}</f:variable>
|
||||
<f:if condition="{header}">
|
||||
<div class="ce-bodytext">
|
||||
<f:render partial="Header/All" arguments="{_all}" />
|
||||
</div>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
|
||||
<f:if condition="{gallery.position.vertical} == 'below'">
|
||||
<f:render partial="Media/Gallery" arguments="{_all}" />
|
||||
</f:if>
|
||||
</div>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,45 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Default" />
|
||||
<f:section name="Main">
|
||||
|
||||
<f:if condition="{files}">
|
||||
<ul class="ce-uploads">
|
||||
<f:for each="{files}" as="file" iteration="fileIterator">
|
||||
<li>
|
||||
<f:if condition="{data.uploads_type} == 1">
|
||||
<img src="{f:uri.resource(path: 'EXT:frontend/Resources/Public/Icons/FileIcons/{file.extension}.gif')}" alt="">
|
||||
</f:if>
|
||||
<f:if condition="{data.uploads_type} == 2">
|
||||
<f:if condition="{file.type} > 1">
|
||||
<f:if condition="{f:uri.image(src: 'file:{f:if(condition: file.originalFile, then: \'file:{file.originalFile.uid}\', else: \'file:{file.uid}\')}')} != '/'">
|
||||
<f:then>
|
||||
<a href="{file.publicUrl}" {f:if(condition:data.target,then: ' target="{data.target}"')}{f:if(condition: file.title, then: ' title="{file.title}"')}>
|
||||
<f:media file="{file}" width="150" alt="{file.properties.alternative}" />
|
||||
</a>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<img src="{f:uri.resource(path: 'EXT:frontend/Resources/Public/Icons/FileIcons/{file.extension}.gif')}" alt="">
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</f:if>
|
||||
<div>
|
||||
<a href="{file.publicUrl}" {f:if(condition:data.target,then: ' target="{data.target}"')}{f:if(condition: file.title, then: ' title="{file.title}"')}>
|
||||
<span class="ce-uploads-fileName">{f:if(condition: file.properties.title, then: file.properties.title, else: file.name) -> f:format.htmlspecialchars()}</span>
|
||||
</a>
|
||||
<f:if condition="{file.properties.description}">
|
||||
<f:if condition="{data.uploads_description}">
|
||||
<span class="ce-uploads-description">{file.properties.description}</span>
|
||||
</f:if>
|
||||
</f:if>
|
||||
<f:if condition="{data.filelink_size}">
|
||||
<span class="ce-uploads-filesize"><f:format.bytes value="{file.properties.size}" /></span>
|
||||
</f:if>
|
||||
</div>
|
||||
</li>
|
||||
</f:for>
|
||||
</ul>
|
||||
</f:if>
|
||||
|
||||
</f:section>
|
||||
</html>
|
||||
Reference in New Issue
Block a user