2013-04-11 09:22:39 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle($this->config->title->data);
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
|
|
|
?>
|
2013-06-09 15:20:15 +00:00
|
|
|
<?= $this->render('breadcrumbs.phtml') ?>
|
2013-04-11 09:22:39 +00:00
|
|
|
<div class="row">
|
2013-06-09 15:20:15 +00:00
|
|
|
<div class="span2">
|
2013-04-11 09:22:39 +00:00
|
|
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
|
|
|
</div>
|
2013-06-09 15:20:15 +00:00
|
|
|
<div class="span10">
|
2013-04-11 09:22:39 +00:00
|
|
|
<div id="intro">
|
2013-06-09 15:20:15 +00:00
|
|
|
<?php if(!empty($this->info['body'])) echo $this->info['body'];?>
|
2013-04-11 09:22:39 +00:00
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<?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="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|