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

35 lines
1.3 KiB
PHTML
Raw Normal View History

2013-04-17 02:55:43 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/water.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
$this->breadcrumb('<a href="/yrnmr/">'.$this->config->title->yrnmr.'</a>');
$this->breadcrumb('基础数据');
$this->breadcrumb()->setSeparator(' > ');
2015-04-26 13:35:40 +00:00
$this->nav[] = array('link'=>"/yrnmr",'title'=>'黄河上游宁蒙河段');
2013-04-17 02:55:43 +00:00
?>
2015-04-26 13:35:40 +00:00
<?= $this->render('breadcrumbs.phtml'); ?>
2013-04-17 02:55:43 +00:00
<div class="row">
2015-04-26 13:35:40 +00:00
<div class="span2">
2013-04-17 02:55:43 +00:00
<?= $this->partial('yrnmr/navi.phtml'); ?>
</div>
2015-04-26 13:35:40 +00:00
<div class="span10">
<?php if ($this->info) : ?>
<div class="well">
<?php if(!empty($this->info['body'])) echo $this->info['body'];?>
2013-04-17 02:55:43 +00:00
</div>
2015-04-26 13:35:40 +00:00
<?php endif; ?>
2013-04-17 02:55:43 +00:00
<?php if ($this->metadata) : ?>
<?php echo $this->page->getNavigation(); ?>
<div id="mdlist">
2015-04-26 13:35:40 +00:00
<ol start="<?php echo $this->offset; ?>">
<?php foreach($this->metadata as $md) : ?>
<li><a href="/yrnmr/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
<?php endforeach; ?>
</ol>
2013-04-17 02:55:43 +00:00
</div>
<?php endif; ?>
2015-04-26 13:35:40 +00:00
</div>
2013-04-17 02:55:43 +00:00
</div>