23 lines
761 B
PHTML
Executable File
23 lines
761 B
PHTML
Executable File
<?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">
|
|
<div id="intro">
|
|
<h1><?php if(!empty($this->info['title'])) echo $this->info['title']; ?></h1>
|
|
<table>
|
|
<tr><td><?php if(!empty($this->info['body'])) echo $this->info['body'];?></td></tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|