Skip to content
Code-Schnipsel Gruppen Projekte
IntervieweeData.html 466 B
Newer Older
{if $this->getAttribute('showTitle') && $this->getAttribute('frontendTitle')}
    <header class="control-header">
        <h1>{$this->getAttribute('frontendTitle')}</h1>
    </header>
{/if}

{if $this->getAttribute('content') != ""}
    <div class="control-body default-content">
        {$this->getAttribute('content')}
    </div>
{/if}

<div class="control-template">
    {if isset($controlTemplate) && $controlTemplate}
        {$controlTemplate}
    {/if}
</div>