25 lines
1.1 KiB
PHTML
25 lines
1.1 KiB
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle($this->config->title->data);
|
||
|
$this->headTitle('在线数据浏览');
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->nav[] = array('link'=>"/heihe/offline",'title'=>'在线数据浏览');
|
||
|
?>
|
||
|
<div>
|
||
|
<?= $this->render('breadcrumbs.phtml'); ?>
|
||
|
</div>
|
||
|
<?php echo $this->page->getNavigation(); ?>
|
||
|
<hr />
|
||
|
<?php foreach($this->metadata as $md) : ?>
|
||
|
<div class="media well well-small">
|
||
|
<a href="/service/bigthumb/uuid/<?= $md['uuid'] ?>" class="pull-left colorbox">
|
||
|
<img class="media-object" src="/service/thumb/id/<?php echo $md['id'];?>">
|
||
|
</a>
|
||
|
<div class="media-body">
|
||
|
<h4 class="media-heading"><a href="/heihe/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a></h4>
|
||
|
<div class="summary"><?php echo str_replace(array("\r\n", "\n", "\r"),'<br />',mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']));?></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php endforeach; ?>
|
||
|
<hr />
|
||
|
<?php echo $this->page->getNavigation(); ?>
|