26 lines
774 B
Smarty
26 lines
774 B
Smarty
{extends "index.tpl"}
|
|
|
|
{block "content"}
|
|
<div class="html-page html-page-{$body.page.id}">
|
|
{$pageBlocks = $body.page.blocks}
|
|
|
|
{foreach $pageBlocks as $block}
|
|
{$block|inline_edit nofilter}
|
|
{/foreach}
|
|
|
|
{get_photos assign="photos" type="pages" id=$body.page.id}
|
|
|
|
{if $photos|count}
|
|
<div class="row">
|
|
{foreach $photos as $photo}
|
|
<div class="col-xs-12 col-sm-6 col-md-3">
|
|
<a href="{get_photo photo=$photo.img size=0}" class="thumbnail" rel="gallery">
|
|
<img src="{get_photo photo=$photo.img size=4}" alt="{$photo.img.descr}" class="img-responsive">
|
|
</a>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/block}
|