36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
|
{layout name="layout"/}
|
||
|
{php}
|
||
|
use app\model\Article;
|
||
|
use app\model\Category;
|
||
|
$childrenMenu = Category::getChildrenByParentId(Category::CATEGORY_COMPANY);
|
||
|
$items = Article::getList(Category::CATEGORY_COMPANY_HONOR, 1000);
|
||
|
{/php}
|
||
|
|
||
|
{include file="public/about_second" /}
|
||
|
|
||
|
<!-- 企业荣誉 -->
|
||
|
<div class="pull-section pull-content-bg content-bg-white wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
|
||
|
<div class="honor w1360">
|
||
|
<div class="profile-title culture-title honor-title">
|
||
|
<p class="capitalize font-helvetica color-blue wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">{$blocks['company_honor']['value']}</p>
|
||
|
<strong class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">{$blocks['company_honor']['title']}</strong>
|
||
|
</div>
|
||
|
<div class="honor-list">
|
||
|
{foreach $items as $item}
|
||
|
<div class="item">
|
||
|
<div class="time flex"><span>{$item.title}</span></div>
|
||
|
<div class="txt wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
|
||
|
{php}
|
||
|
$list = nl2br($item['summary']);
|
||
|
$list = explode('<br />', $list);
|
||
|
{/php}
|
||
|
|
||
|
{foreach $list as $val}
|
||
|
<p><img src="__STATIC__/web/images/icon/icon-circular.png"><span>{$val}</span></p>
|
||
|
{/foreach}
|
||
|
</div>
|
||
|
</div>
|
||
|
{/foreach}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|