* create namespace Aowow to avoid naming conflicts * inclues/libs/ is outside of the Aowow namespace
26 lines
614 B
PHP
26 lines
614 B
PHP
<?php namespace Aowow; ?>
|
|
|
|
<?php $this->brick('header'); ?>
|
|
|
|
<div class="main" id="main">
|
|
<div class="main-precontents" id="main-precontents"></div>
|
|
<div class="main-contents" id="main-contents">
|
|
|
|
<?php
|
|
$this->brick('announcement');
|
|
|
|
$this->brick('pageTemplate');
|
|
?>
|
|
|
|
<div class="text">
|
|
<h1><?=$this->name;?></h1>
|
|
<p><?=$this->privReqPoints;?></p><br>
|
|
<?php
|
|
$this->brick('article');
|
|
?>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|