36 lines
1.5 KiB
PHTML
36 lines
1.5 KiB
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle($this->config->title->data);
|
||
|
$this->headTitle('缩略图浏览');
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||
|
$this->breadcrumb('缩略图浏览');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||
|
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
||
|
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
||
|
?>
|
||
|
|
||
|
<?php echo $this->page->getNavigation(); ?>
|
||
|
<hr />
|
||
|
<div id="mdlist">
|
||
|
<?php foreach($this->metadata as $md) : ?>
|
||
|
<div class="thumb">
|
||
|
|
||
|
<div class="thumbtitle">
|
||
|
<a href="/data/view/uuid/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']); ?> </a>
|
||
|
</div>
|
||
|
<a class="colorbox" href="/service/bigthumb/id/<?php echo $md['id'];?>" title="<?php echo $this->escape($md['title']); ?>">
|
||
|
<img src="/service/thumb/id/<?php echo $md['id'];?>" alt="<?php echo $this->escape($md['title']);?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>" />
|
||
|
</a>
|
||
|
</div>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|
||
|
<hr style="clear:left;"/>
|
||
|
<?php echo $this->page->getNavigation(); ?>
|
||
|
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
$(document).ready(function(){$(".colorbox").colorbox({rel:"colorbox",photo:"true",transition:"fade"});});
|
||
|
</script>
|