59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
|
{layout name="layout" /}
|
||
|
|
||
|
<div class="fixed-height"></div>
|
||
|
|
||
|
<section class="inner-banenr">
|
||
|
<img src="{$category.src}" alt="{$category.title}">
|
||
|
</section>
|
||
|
|
||
|
<section class="inner-nav">
|
||
|
<div class="wrap">
|
||
|
<div class="left">
|
||
|
<img src="__STATIC__/web/__STATIC__/web/img/home.png" alt="">
|
||
|
<div>
|
||
|
您当前位置:<a href="/">首页</a> | <span>{$parentCategory.title}</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{include file="public/search"}
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<section class="inner-nav2 mt30">
|
||
|
<div class="wrap">
|
||
|
{foreach $categoryChildren as $child}
|
||
|
<a href="/info.html?category_id={$child.id}" class="{if $child['id'] == $category['id']}curr{/if}">{$child.title}</a>
|
||
|
{/foreach}
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<!-- 主要内容 -->
|
||
|
<section class="party-list">
|
||
|
<div class="wrap">
|
||
|
<div class="title2 mt40"><span>{$category.title}</span></div>
|
||
|
<div class="talent-list">
|
||
|
{foreach $items as $item}
|
||
|
<div class="boxs">
|
||
|
<div class="talent-top">
|
||
|
<h3 class="tit">{$item.title}</h3>
|
||
|
<div class="text">
|
||
|
<div class="link">查看详情 >></div>
|
||
|
<div class="time">
|
||
|
<span>发布时间:<img src="__STATIC__/web/img/time.jpg" alt="">{:date('Y.m.d', strtotime($item['published_at']))}</span>
|
||
|
<span>截止时间:<img src="__STATIC__/web/img/time.jpg" alt="">{:date('Y.m.d', strtotime($item['end_at']))}</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="talent-bottom">
|
||
|
<div>
|
||
|
{$item.content|raw}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{/foreach}
|
||
|
</div>
|
||
|
|
||
|
{$items->render('', 'class="pageing wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0"')|raw}
|
||
|
</div>
|
||
|
</section>
|