Remove unnecessary whitespace
This commit is contained in:
parent
6cd31a00a3
commit
598949cd0d
4 changed files with 35 additions and 30 deletions
|
@ -1,6 +1,12 @@
|
|||
config {
|
||||
headerComment = Created by Daniel Siepmann.
|
||||
absRefPrefix = auto
|
||||
|
||||
# Does not have any effect?
|
||||
# intTarget = _top
|
||||
# extTarget = _blank
|
||||
# fileTarget = _blank
|
||||
|
||||
spamProtectEmailAddresses = ascii
|
||||
spamProtectEmailAddresses_atSubst = | at |
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true">
|
||||
|
||||
{f:render(partial: 'Header', arguments: _all)}
|
||||
{f:render(partial: 'Header', arguments: _all) -> f:spaceless()}
|
||||
|
||||
<main>
|
||||
<header>
|
||||
|
@ -15,15 +15,15 @@
|
|||
compatibleWith: compatibleWith,
|
||||
topics: assignedTopics,
|
||||
addLinks: 1
|
||||
})}
|
||||
}) -> f:spaceless()}
|
||||
|
||||
<aside>
|
||||
{f:render(section: 'Aside', arguments: _all)}
|
||||
{f:render(section: 'Aside', arguments: _all) -> f:spaceless()}
|
||||
</aside>
|
||||
|
||||
{f:render(section: 'Content', arguments: _all)}
|
||||
</article>
|
||||
</main>
|
||||
|
||||
{f:render(partial: 'Footer', arguments: _all)}
|
||||
{f:render(partial: 'Footer', arguments: _all) -> f:spaceless()}
|
||||
</html>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true">
|
||||
|
||||
{f:render(partial: 'Header', arguments: _all)}
|
||||
{f:render(partial: 'Header', arguments: _all) -> f:spaceless()}
|
||||
|
||||
<main>
|
||||
<header>
|
||||
|
@ -9,13 +9,13 @@
|
|||
</header>
|
||||
|
||||
<section>
|
||||
{f:render(section: 'Content', arguments: _all)}
|
||||
{f:render(section: 'Content', arguments: _all) -> f:spaceless()}
|
||||
</section>
|
||||
|
||||
<aside>
|
||||
{f:render(section: 'Aside', arguments: _all)}
|
||||
{f:render(section: 'Aside', arguments: _all) -> f:spaceless()}
|
||||
</aside>
|
||||
</main>
|
||||
|
||||
{f:render(partial: 'Footer', arguments: _all)}
|
||||
{f:render(partial: 'Footer', arguments: _all) -> f:spaceless()}
|
||||
</html>
|
||||
|
|
|
@ -28,9 +28,8 @@
|
|||
|
||||
<f:section name="TopicList">
|
||||
<f:if condition="{topics}">
|
||||
<p>{headline}
|
||||
<f:for each="{topics}" as="topic" iteration="i">
|
||||
<f:render section="TopicLink"
|
||||
<p>{headline} <f:for each="{topics}" as="topic" iteration="i"><f:spaceless>
|
||||
<f:render section="Topic"
|
||||
contentAs="content"
|
||||
arguments="{
|
||||
addLinks: addLinks,
|
||||
|
@ -39,19 +38,19 @@
|
|||
>
|
||||
{topic.data.title}{f:if(condition: '!{i.isLast}', then: ',')}
|
||||
</f:render>
|
||||
</f:for>
|
||||
</p>
|
||||
</f:spaceless></f:for></p>
|
||||
</f:if>
|
||||
</f:section>
|
||||
|
||||
<f:section name="TopicLink">
|
||||
<f:if condition="{addLinks}">
|
||||
<f:then>
|
||||
<f:section name="Topic">
|
||||
{f:if(
|
||||
condition: addLinks,
|
||||
then: "{f:render(section: 'LinkedTopic', arguments: _all)}",
|
||||
else: content
|
||||
)}
|
||||
</f:section>
|
||||
|
||||
<f:section name="LinkedTopic">
|
||||
<a href="{f:uri.page(pageUid: 11, additionalParams: {topic: topicUid})}">{content -> f:spaceless()}</a>
|
||||
</f:then>
|
||||
<f:else>
|
||||
{content}
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:section>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue