westdc-zf1/application/default/views/scripts/glacier/thumb.phtml

51 lines
2.0 KiB
PHTML
Raw Permalink Normal View History

2013-04-16 09:19:06 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle('缩略图浏览');
2013-04-16 09:19:06 +00:00
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/water.css');
$this->breadcrumb()->setSeparator(' > ');
$this->theme->AppendPlus($this,'colorbox');
$this->theme->AppendPlus($this,'masonry');
$this->nav[] = array('link'=>"/glacier/",'title'=>$this->config->title->glacier);
$this->nav[] = array('link'=>"/glacier/thumb",'title'=>'缩略图浏览');
?>
<?= $this->render('breadcrumbs.phtml') ?>
2013-04-16 09:19:06 +00:00
<div class="row">
<div class="span2">
<?= $this->partial('glacier/navi.phtml'); ?>
2013-04-16 09:19:06 +00:00
</div>
<div class="span10">
2013-04-16 09:19:06 +00:00
<?php echo $this->page->getNavigation(); ?>
<hr />
<div>
<ul class="thumb water-thumb unstyled" id="container">
2013-04-16 09:19:06 +00:00
<?php foreach($this->metadata as $md) : ?>
<li class="items">
<h4><a href="/glacier/view/uuid/<?php echo $md['uuid'];?>"><?= $this->escape($md['title']);?></a></h4>
<a href="/service/bigthumb/uuid/<?= $md['uuid'] ?>" class="thumbnail colorbox">
<img src="/service/thumb/id/<?php echo $md['id'];?>" alt="">
</a>
<div class="caption">
<p>
<?php echo mb_strlen($md['description'])>120?$this->escape(mb_substr($md['description'],0,120,'UTF-8').'...'):$this->escape($md['description']);?>
</p>
</div>
<span class="pull-right"><a href="/data/<?php echo $md['uuid'];?>" class="btn"><i class="icon-zoom-in"></i>查看</a></span>
</li>
2013-04-16 09:19:06 +00:00
<?php endforeach; ?>
</ul>
2013-04-16 09:19:06 +00:00
</div>
<hr class="clearfix" />
2013-04-16 09:19:06 +00:00
<?php echo $this->page->getNavigation(); ?>
</div>
</div>
2013-04-16 09:19:06 +00:00
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$(".colorbox").colorbox({rel:"colorbox",photo:"true",transition:"fade"});
$(".colorbox").colorbox({photo:"true"});
});
$('#container').masonry({
itemSelector : '.items',
});
2012-05-21 13:05:02 +00:00
</script>