50 lines
2.4 KiB
Smarty
50 lines
2.4 KiB
Smarty
{*
|
|
* @Module Name: AP Page Builder
|
|
* @Website: apollotheme.com - prestashop template provider
|
|
* @author Apollotheme <apollotheme@gmail.com>
|
|
* @copyright Apollotheme
|
|
* @description: ApPageBuilder is module help you can build content for your shop
|
|
*}
|
|
<!-- @file modules\appagebuilder\views\templates\hook\ApBlog -->
|
|
{if isset($formAtts.lib_has_error) && $formAtts.lib_has_error}
|
|
{if isset($formAtts.lib_error) && $formAtts.lib_error}
|
|
<div class="alert alert-warning leo-lib-error">{$formAtts.lib_error}</div>
|
|
{/if}
|
|
{else}
|
|
|
|
<div id="blog-{$formAtts.form_id|escape:'html':'UTF-8'}" class="block latest-blogs exclusive appagebuilder {(isset($formAtts.class)) ? $formAtts.class : ''|escape:'html':'UTF-8'}">
|
|
{($apLiveEdit) ? $apLiveEdit : '' nofilter}{* HTML form , no escape necessary *}
|
|
{if isset($formAtts.title)&&!empty($formAtts.title)}
|
|
<h4 class="title_block">
|
|
{$formAtts.title|rtrim|escape:'html':'UTF-8'}
|
|
</h4>
|
|
{/if}
|
|
{if isset($formAtts.sub_title) && $formAtts.sub_title}
|
|
<div class="sub-title-widget">{$formAtts.sub_title nofilter}</div>
|
|
{/if}
|
|
<div class="block_content">
|
|
{if !empty($products)}
|
|
{if $formAtts.carousel_type == "slickcarousel"}
|
|
{assign var=leo_include_file value=$leo_helper->getTplTemplate('BlogSlickCarousel.tpl', $formAtts['override_folder'])}
|
|
{include file=$leo_include_file}
|
|
{else}
|
|
{if $formAtts.carousel_type == 'boostrap'}
|
|
{assign var=leo_include_file value=$leo_helper->getTplTemplate('BlogCarousel.tpl', $formAtts['override_folder'])}
|
|
{include file=$leo_include_file}
|
|
{else}
|
|
{assign var=leo_include_file value=$leo_helper->getTplTemplate('BlogOwlCarousel.tpl', $formAtts['override_folder'])}
|
|
{include file=$leo_include_file}
|
|
{/if}
|
|
{/if}
|
|
{else}
|
|
<p class="alert alert-info">{l s='No blog at this time.' mod='appagebuilder'}</p>
|
|
{/if}
|
|
{if isset($formAtts.bleoblogs_show) && $formAtts.bleoblogs_show}
|
|
<div class="blog-viewall float-xs-right">
|
|
<a class="btn btn-primary" href="{$formAtts.leo_blog_helper->getFontBlogLink()}" title="{l s='View All' mod='appagebuilder'}">{l s='View All' mod='appagebuilder'}</a>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{($apLiveEditEnd)?$apLiveEditEnd:'' nofilter}{* HTML form , no escape necessary *}
|
|
</div>
|
|
{/if} |