Skip to content
Snippets Groups Projects
Commit bcffbf43 authored by Prasad's avatar Prasad
Browse files

Merge branch 'v7' into 'master'

Marketing data render is updated for login page

See merge request !174
parents 811c6eaf 0bd8598e
No related branches found
No related tags found
No related merge requests found
......@@ -252,24 +252,26 @@
{if $JSON_DATA}
{foreach key=BLOCK_NAME item=BLOCKS_DATA from=$JSON_DATA}
<div>
<h3><b>{$BLOCK_DATA.heading}</b></h3>
{foreach item=BLOCK_DATA from=$BLOCKS_DATA}
<div class="row">
{if $BLOCK_DATA.image}
<div class="col-lg-3" style="min-height: 100px;"><img src="{$BLOCK_DATA.image}" style="width: 100%;height: 100%;"/></div>
<div class="col-lg-9" title="{$BLOCK_DATA.summary}">
{else}
<div class="col-lg-12" title="{$BLOCK_DATA.summary}">
{/if}
<h4>{$BLOCK_DATA.displayTitle}</h4>
{$BLOCK_DATA.displaySummary}<br><br>
<span class="blockLink">
<a href="{$BLOCK_DATA.url}" target="_blank">{$BLOCK_DATA.urlalt}</a>
</span>
{if $BLOCKS_DATA}
<h3><b>{$BLOCKS_DATA[0].heading}</b></h3>
{foreach item=BLOCK_DATA from=$BLOCKS_DATA}
<div class="row">
{if $BLOCK_DATA.image}
<div class="col-lg-3" style="min-height: 100px;"><img src="{$BLOCK_DATA.image}" style="width: 100%;height: 100%;"/></div>
<div class="col-lg-9" title="{$BLOCK_DATA.summary}">
{else}
<div class="col-lg-12" title="{$BLOCK_DATA.summary}">
{/if}
<h4>{$BLOCK_DATA.displayTitle}</h4>
{$BLOCK_DATA.displaySummary}<br><br>
<span class="blockLink">
<a href="{$BLOCK_DATA.url}" target="_blank">{$BLOCK_DATA.urlalt}</a>
</span>
</div>
</div>
</div>
</div>
{/foreach}
{/foreach}
{/if}
<br>
{/foreach}
{else}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment