Skip to content
Code-Schnipsel Gruppen Projekte
Commit 14fff650 erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

feat: Email order adjusted.

#39
Übergeordneter ec24489c
Keine zugehörigen Branchen gefunden
Keine zugehörigen Tags gefunden
Keine zugehörigen Merge Requests gefunden
...@@ -203,8 +203,6 @@ ...@@ -203,8 +203,6 @@
<a href="#" class="topbar-social-link"><span class="fa fa-facebook">&nbsp;</span></a> <a href="#" class="topbar-social-link"><span class="fa fa-facebook">&nbsp;</span></a>
<a href="#" class="topbar-social-link"><span class="fa fa-twitter">&nbsp;</span></a> <a href="#" class="topbar-social-link"><span class="fa fa-twitter">&nbsp;</span></a>
<a href="#" class="topbar-social-link"><span class="fa fa-youtube-play">&nbsp;</span></a>
<a href="#" class="topbar-social-link"><span class="fa fa-instagram">&nbsp;</span></a>
]]> ]]>
</de> </de>
<en><![CDATA[ <en><![CDATA[
...@@ -220,8 +218,6 @@ ...@@ -220,8 +218,6 @@
<a href="#" class="topbar-social-link"><span class="fa fa-facebook">&nbsp;</span></a> <a href="#" class="topbar-social-link"><span class="fa fa-facebook">&nbsp;</span></a>
<a href="#" class="topbar-social-link"><span class="fa fa-twitter">&nbsp;</span></a> <a href="#" class="topbar-social-link"><span class="fa fa-twitter">&nbsp;</span></a>
<a href="#" class="topbar-social-link"><span class="fa fa-youtube-play">&nbsp;</span></a>
<a href="#" class="topbar-social-link"><span class="fa fa-instagram">&nbsp;</span></a>
]]> ]]>
</en> </en>
</locale> </locale>
...@@ -509,8 +505,6 @@ ...@@ -509,8 +505,6 @@
<p> <p>
<a class="font-icon" href="#"><span class="fa fa-facebook">&nbsp;</span></a> <a class="font-icon" href="#"><span class="fa fa-facebook">&nbsp;</span></a>
<a class="font-icon" href="#"><span class="fa fa-twitter">&nbsp;</span></a> <a class="font-icon" href="#"><span class="fa fa-twitter">&nbsp;</span></a>
<a class="font-icon" href="#"><span class="fa fa-youtube-play">&nbsp;</span></a>
<a class="font-icon" href="#"><span class="fa fa-instagram">&nbsp;</span></a>
</p> </p>
]]> ]]>
</de> </de>
...@@ -524,8 +518,6 @@ ...@@ -524,8 +518,6 @@
<p> <p>
<a class="font-icon" href="#"><span class="fa fa-facebook">&nbsp;</span></a> <a class="font-icon" href="#"><span class="fa fa-facebook">&nbsp;</span></a>
<a class="font-icon" href="#"><span class="fa fa-twitter">&nbsp;</span></a> <a class="font-icon" href="#"><span class="fa fa-twitter">&nbsp;</span></a>
<a class="font-icon" href="#"><span class="fa fa-youtube-play">&nbsp;</span></a>
<a class="font-icon" href="#"><span class="fa fa-instagram">&nbsp;</span></a>
</p> </p>
]]> ]]>
</en> </en>
...@@ -696,11 +688,6 @@ ...@@ -696,11 +688,6 @@
alt="Folgen Sie uns auf Twitter"> alt="Folgen Sie uns auf Twitter">
</a> </a>
<a href="#" target="_blank" rel="noreferrer" style="color: #666666; text-decoration: none; padding: 0 10px;"
title="Folgen Sie uns auf Instagram">
<img width="15" height="15" src="[HOST]packages/quiqqer/template-cologne/bin/images/social/instagram.png"
alt="Folgen Sie uns auf Instagram">
</a>
]]> ]]>
</de> </de>
<en> <en>
...@@ -717,11 +704,7 @@ ...@@ -717,11 +704,7 @@
alt="Follow us on Twitter"> alt="Follow us on Twitter">
</a> </a>
<a href="#" target="_blank" rel="noreferrer" style="color: #666666; text-decoration: none; padding: 0 10px;"
title="Follow us on Instagram">
<img width="15" height="15" src="[HOST]packages/quiqqer/template-cologne/bin/images/social/instagram.png"
alt="Follow us on Instagram">
</a>
]]> ]]>
</en> </en>
</locale> </locale>
...@@ -740,11 +723,6 @@ ...@@ -740,11 +723,6 @@
alt="Folgen Sie uns auf Twitter"> alt="Folgen Sie uns auf Twitter">
</a> </a>
<a href="#" target="_blank" rel="noreferrer" style="color: #666666; text-decoration: none; padding: 0 10px;"
title="Folgen Sie uns auf Instagram">
<img width="15" height="15" src="[HOST]packages/quiqqer/template-cologne/bin/images/social/instagram.png"
alt="Folgen Sie uns auf Instagram">
</a>
]]> ]]>
</de> </de>
<en> <en>
...@@ -761,11 +739,6 @@ ...@@ -761,11 +739,6 @@
alt="Follow us on Twitter"> alt="Follow us on Twitter">
</a> </a>
<a href="#" target="_blank" rel="noreferrer" style="color: #666666; text-decoration: none; padding: 0 10px;"
title="Follow us on Instagram">
<img width="15" height="15" src="[HOST]packages/quiqqer/template-cologne/bin/images/social/instagram.png"
alt="Follow us on Instagram">
</a>
]]> ]]>
</en> </en>
</locale> </locale>
......
...@@ -53,6 +53,29 @@ ...@@ -53,6 +53,29 @@
'limit' => 1 'limit' => 1
])} ])}
{* contact *}
{$contact = $Project->getSites([
'where' => [
'type' => [
'type' => 'IN',
'value' => 'quiqqer/contact:types/contact'
]
],
'limit' => 1
])}
{if !$contact|count}
{$contact = $Project->getSites([
'where' => [
'type' => [
'type' => 'IN',
'value' => 'quiqqer/sitetypes:types/contact'
]
],
'limit' => 1
])}
{/if}
{if $legalNotes|count} {if $legalNotes|count}
<a href="{$legalNotes[0]->getUrlRewrittenWithHost()}">{$legalNotes[0]->getAttribute('title')}</a> <a href="{$legalNotes[0]->getUrlRewrittenWithHost()}">{$legalNotes[0]->getAttribute('title')}</a>
{/if} {/if}
...@@ -62,6 +85,9 @@ ...@@ -62,6 +85,9 @@
{if $generalTermsAndConditions|count} {if $generalTermsAndConditions|count}
| <a href="{$generalTermsAndConditions[0]->getUrlRewrittenWithHost()}">{$generalTermsAndConditions[0]->getAttribute('title')}</a> | <a href="{$generalTermsAndConditions[0]->getUrlRewrittenWithHost()}">{$generalTermsAndConditions[0]->getAttribute('title')}</a>
{/if} {/if}
{if $contact|count}
| <a href="{$contact[0]->getUrlRewrittenWithHost()}">{$contact[0]->getAttribute('title')}</a>
{/if}
</td> </td>
</tr> </tr>
......
0% Lade oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren