35 lines
1.1 KiB
PHTML
35 lines
1.1 KiB
PHTML
<?php
|
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
|
$theme = new \Sookon\Helpers\Theme;
|
|
$theme->AppendPlus($this,'colorbox');
|
|
?>
|
|
<div class="container">
|
|
<div id="row">
|
|
<?= $this->partial('layout/metadata/subnav'); ?>
|
|
</div>
|
|
<?php if (!empty($this->paginator)) : ?>
|
|
<div id='metacontent'>
|
|
<?php echo $this->paginator; ?>
|
|
<hr />
|
|
<?php foreach($this->paginator as $md) : ?>
|
|
<div class="mditem">
|
|
<div class="thumb pull-left">
|
|
<a href="/service/bigthumb/uuid/<?= $md['uuid'] ?>" class="colorbox">
|
|
<img src="/service/thumb/id/<?php echo $md['id'];?>" />
|
|
</a>
|
|
</div>
|
|
<h2><a href="/data/<?php echo $md['uuid']; ?>"><?php echo $md['title'];?></a></h2>
|
|
<span><?php echo mb_strlen($md['description'])>400? mb_substr($md['description'],0,400,'UTF-8').'...':$md['description'];?></span>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<?php echo $this->paginator; ?>
|
|
</div>
|
|
</div>
|
|
<?php endif ?>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$(".colorbox").colorbox({rel:"colorbox",photo:"true",transition:"fade"});
|
|
$(".colorbox").colorbox({photo:"true"});
|
|
});
|
|
</script>
|