You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
{template 'header', $template}
|
|
|
|
{if $itemid}
|
|
<div class="ui-viewer" id="viewer-{$js_pageid}"></div>
|
|
<div class="title"><h1>{$title}</h1></div>
|
|
<div class="info"><i class="ui-ico-time">{timetodate($addtime, 3)}</i><i class="ui-ico-hits ui-fr">{$hits}</i></div>
|
|
<div class="content" data-content="{$js_pageid}">
|
|
<img src="{$image}" alt="{$title}"/><br/>
|
|
发证机构:{$authority}<br/>
|
|
发证时间 :{timetodate($fromtime, 3)}<br/>
|
|
有效期至 :{if $totime}{timetodate($totime, 3)}{else}永久{/if}<br/>
|
|
{$content}
|
|
</div>
|
|
{else}
|
|
{if $lists}
|
|
<div id="list-{$js_pageid}" class="main">
|
|
{loop $lists $v}
|
|
<div class="ui-list-mix">
|
|
<a href="{$v[linkurl]}"><img src="{$v[thumb]}" alt=""/></a>
|
|
<ul>
|
|
<li><a href="{$v[linkurl]}"><strong>{$v[title]}</strong></a></li>
|
|
<li><p><i class="ui-ico-time">{timetodate($v[fromtime], 3)} 至 {if $v[totime]}{timetodate($v[totime], 3)}{else}永久{/if}</i></p></li>
|
|
<li><p><i class="ui-ico-info">{$v[authority]}</i></p></li>
|
|
</ul>
|
|
</div>
|
|
{/loop}
|
|
</div>
|
|
<div id="load-{$js_pageid}" class="ui-load"></div>
|
|
{else}
|
|
{template 'empty', 'chip'}
|
|
{/if}
|
|
{if $pages}<div class="pages" id="pages-{$js_pageid}">{$pages}</div>{/if}
|
|
{/if}
|
|
{template 'footer', $template}
|