Skip to content
Snippets Groups Projects
Commit 0bd8598e authored by Satish's avatar Satish
Browse files

Marketing data render is updated for login page

parent 2029b88f
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