13 lines
639 B
HTML
Executable File
13 lines
639 B
HTML
Executable File
{{if !empty($data_list)}}
|
|
<ul data-am-widget="gallery" class="am-gallery am-avg-sm-2 am-avg-md-4 am-avg-lg-4 am-gallery-overlay am-container" data-am-gallery="{}">
|
|
{{foreach $data_list as $k=>$v}}
|
|
<li>
|
|
<div class="am-gallery-item">
|
|
<a href="{{if empty($v['url'])}}javascript:;{{else /}}{{$v.url}}{{/if}}" {{if isset($v['is_new_window_open']) and $v['is_new_window_open'] eq 1}}target="_blank"{{/if}}>
|
|
<img src="{{$v.images_url}}" alt="{{$v.name}}" />
|
|
</a>
|
|
</div>
|
|
</li>
|
|
{{/foreach}}
|
|
</ul>
|
|
{{/if}} |