30 lines
1.1 KiB
PHTML
30 lines
1.1 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->data);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
|
$this->nav[] = array('link'=>"/glacier",'title'=>$this->config->title->glacier);
|
|
?>
|
|
<?= $this->render('breadcrumbs.phtml'); ?>
|
|
<div class="row">
|
|
<div class="span2">
|
|
<?= $this->partial('glacier/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span10">
|
|
<?php if ($this->info) : ?>
|
|
<div class="well">
|
|
<?php if(!empty($this->info['body'])) echo $this->info['body'];?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ($this->metadata) : ?>
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
<div id="mdlist">
|
|
<ol start="<?php echo $this->offset; ?>">
|
|
<?php foreach($this->metadata as $md) : ?>
|
|
<li><a href="/glacier/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ol>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|