westdc-zf1/application/default/views/scripts/hiwater/base.phtml

30 lines
1.1 KiB
PHTML
Raw Permalink Normal View History

2013-04-17 07:40:16 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/water.css');
2014-09-30 06:50:23 +00:00
$this->nav[] = array('link'=>"/hiwater",'title'=>'HiWATER');
2013-04-17 07:40:16 +00:00
?>
2013-05-24 16:24:31 +00:00
<?= $this->render('breadcrumbs.phtml'); ?>
2013-04-17 07:40:16 +00:00
<div class="row">
<div class="span3">
<?= $this->partial('hiwater/navi.phtml'); ?>
</div>
<div class="span9">
2013-05-24 16:24:31 +00:00
<?php if ($this->info) : ?>
<div class="well">
<?php if(!empty($this->info['body'])) echo $this->info['body'];?>
2013-04-17 07:40:16 +00:00
</div>
2013-05-24 16:24:31 +00:00
<?php endif; ?>
2013-04-17 07:40:16 +00:00
<?php if ($this->metadata) : ?>
<?php echo $this->page->getNavigation(); ?>
<div id="mdlist">
<ol start="<?php echo $this->offset; ?>">
<?php foreach($this->metadata as $md) : ?>
2013-05-24 16:24:31 +00:00
<li><a href="/hiwater/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
2013-04-17 07:40:16 +00:00
<?php endforeach; ?>
</ol>
</div>
<?php endif; ?>
</div>
</div>