2011-10-21 08:52:32 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle($this->config->title->data);
|
|
|
|
$this->headTitle('全部浏览');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
2011-10-25 04:12:44 +00:00
|
|
|
$this->headScript()->appendFile('/js/pubfunc.js');
|
2011-10-21 08:52:32 +00:00
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
|
|
|
$this->breadcrumb('<a href="/heihe">数字黑河</a>');
|
|
|
|
$this->breadcrumb('缩略图浏览');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
|
|
|
<div id='sidebar'>
|
|
|
|
<div id='leftnavi'>
|
|
|
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id='right'>
|
|
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
|
|
<hr />
|
|
|
|
<div id="mdlist">
|
2011-10-25 04:12:44 +00:00
|
|
|
<?php foreach($this->metadata as $md) :
|
|
|
|
$thumburl='/gndata/'.sprintf('%05d',floor(($md['gid']+0.1)/100)*100).'-'.sprintf('%05d',ceil(($md['gid']+0.1)/100)*100-1)."/".$md['gid'];
|
|
|
|
$thumburl.='/public/'.str_replace('_s.','.',$md['filename']);
|
|
|
|
?>
|
2011-10-21 08:52:32 +00:00
|
|
|
<div class="thumb">
|
2011-10-25 04:12:44 +00:00
|
|
|
|
|
|
|
<div class="thumbtitle">
|
|
|
|
<a href="/heihe/view/uuid/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']); ?> </a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<img src="/data/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']);?>"
|
|
|
|
onclick="fnCreate('http://qa.magicfind.net<?php echo $thumburl; ?>')" />
|
|
|
|
|
2011-10-21 08:52:32 +00:00
|
|
|
</div>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
<hr style="clear:left;"/>
|
|
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
|
|
</div>
|