12 lines
337 B
PHTML
12 lines
337 B
PHTML
<?php if($this->header_image): ?>
|
|
<img id="header_image" src="<?php echo $this->base ?>/img/header/<?php echo $this->header_image ?>" alt="">
|
|
<?php endif ?>
|
|
|
|
<h1><?php echo $this->title ?></h1>
|
|
<?php if($this->subtitle): ?>
|
|
<h2><?php echo $this->subtitle ?></h2>
|
|
<?php endif ?>
|
|
|
|
<div id="content">
|
|
<?php echo $this->content ?>
|
|
</div>
|