31 lines
1.2 KiB
PHTML
Executable File
31 lines
1.2 KiB
PHTML
Executable File
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->data);
|
|
|
|
$this->headTitle('快速搜索');
|
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
|
$this->breadcrumb('快速搜索');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div id='tools'>
|
|
<?= $this->partial('data/tools.phtml',array('key'=>$this->key)); ?>
|
|
</div>
|
|
|
|
<?php if (!empty($this->metadata)) : ?>
|
|
<?php echo $this->page->getNavigation();
|
|
foreach($this->metadata as $md) : ?>
|
|
<hr />
|
|
<div class="mditem">
|
|
<div class="thumb"><img src="/service/thumb/id/<?php echo $md['id'];?>" /></div>
|
|
<h2><a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a>
|
|
</h2>
|
|
<span><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></span>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<hr />
|
|
<?php echo $this->page->getNavigation();?>
|
|
<?php endif; ?> |