Skip to content
Code-Schnipsel Gruppen Projekte
startPage.html 2,92 KiB
Newer Older
  • Learn to ignore specific revisions
  • {assign var=prefixContentBricks value=$BricksManager->getBricksByArea('contentPrefix', $Site)}
    {assign var=suffixContentBricks value=$BricksManager->getBricksByArea('contentSuffix', $Site)}
    
    <div class="main-start-page">
    
        {if !empty( $prefixContentBricks )}
        {foreach from=$prefixContentBricks item=Brick}
    
            {assign var=classes value=\QUI\TemplateCologne\Utils::convertBrickCSSClass($Brick->getAttribute('classes'))}
    
            <section class="template-brick-container template-brick-contentPrefix brick-id-{$Brick->getAttribute('id')} {$classes}">
                <div class="template-grid-row">
                    {if $Brick->getAttribute('frontendTitle')}
                        <h2 class="brick-title">{$Brick->getAttribute('frontendTitle')}</h2>
                    {/if}
                    {assign var=showTitle value=$Brick->setSetting('showTitle', false)}
                    {$Brick->create()}
                </div>
            </section>
    
        {/foreach}
        {/if}
    
        <div role="main">
    
            {if ($header == 'beforeContent' || $header == 'hide') && !$productPage}
                {if $Site->getAttribute('image_emotion') &&  $header == 'beforeContent' }
    
                <header class="page-content-header page-content-header-emotion"
                        style="background-image: url('{image src=$Site->getAttribute('image_emotion') width=1160 onlysrc=1 rewrited=1}')"
                >
                    <div class="page-content-header-emotion-container">
    
                        {if $pageTitle == 'header' || $pageTitle == 'both'}
                        <h1>{$Site->getAttribute('title')|nl2br}</h1>
                        {/if}
    
                        <div class="page-content-emotion-short">
    
                            {$Site->getAttribute('short')|nl2br}
    
                        </div>
                    </div>
                </header>
                {else}
                <header class="page-content-header">
    
                    {if $pageTitle == 'header' || $pageTitle == 'both'}
    
                    <h1>{$Site->getAttribute('title')|nl2br}</h1>
    
                    <div class="page-content-emotion-short">
                        {$Site->getAttribute('short')|nl2br}
                    </div>
                </header>
                {/if}
    
            {$Template->getBody()}
        </div>
    
        {if !empty( $suffixContentBricks )}
        {foreach from=$suffixContentBricks item=Brick}
    
            {assign var=classes value=\QUI\TemplateCologne\Utils::convertBrickCSSClass($Brick->getAttribute('classes'))}
    
            <section class="template-brick-container template-brick-contentSuffix brick-id-{$Brick->getAttribute('id')} {$classes}">
                <div class="template-grid-row">
                    {if $Brick->getAttribute('frontendTitle')}
                        <h2 class="brick-title">{$Brick->getAttribute('frontendTitle')}</h2>
                    {/if}
                    {assign var=showTitle value=$Brick->setSetting('showTitle', false)}
                    {$Brick->create()}
                </div>
            </section>
    
        {/foreach}