Merge branch 'master' of http://git.scdxtc.com/yin5th/zzwy2
commit
df31d2f384
|
@ -17,7 +17,7 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId);
|
|||
{foreach $images as $img}
|
||||
<div class="swiper-slide">
|
||||
<a href="{$img['link'] ?: 'javascript:;'}">
|
||||
<img src="{$img.src ?? ''}" alt="{$img.alt}">
|
||||
<img src="{$img.src ?? ''}" alt="{$img.alt ?? ''}">
|
||||
</a>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
@ -47,7 +47,7 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId);
|
|||
<div class="resource-advantage w1360 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
|
||||
{if !empty($resource)}
|
||||
{foreach $resource as $res}
|
||||
<img src="{$res.src ?? ''}" alt="{$res.alt}" style="width: 100%;padding-top: 5px;">
|
||||
<img src="{$res.src ?? ''}" alt="{$res.alt ?? ''}" style="width: 100%;padding-top: 5px;">
|
||||
{/foreach}
|
||||
{/if}
|
||||
</div>
|
||||
|
|
|
@ -17,7 +17,7 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId);
|
|||
{foreach $images as $img}
|
||||
<div class="swiper-slide">
|
||||
<a href="{$img['link'] ?: 'javascript:;'}">
|
||||
<img src="{$img.src ?? ''}" alt="{$img.alt}">
|
||||
<img src="{$img.src ?? ''}" alt="{$img.alt ?? ''}">
|
||||
</a>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
@ -45,7 +45,7 @@ $childrenMenu = Category::getChildrenByParentId($topCategoryId);
|
|||
<div class="resource-advantage wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
|
||||
{if !empty($resource)}
|
||||
{foreach $resource as $res}
|
||||
<img src="{$res.src ?? ''}" alt="{$res.alt}" style="width: 100%;padding-top: 5px;">
|
||||
<img src="{$res.src ?? ''}" alt="{$res.alt ?? ''}" style="width: 100%;padding-top: 5px;">
|
||||
{/foreach}
|
||||
{/if}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue