mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* create namespace Aowow to avoid naming conflicts * inclues/libs/ is outside of the Aowow namespace
32 lines
842 B
PHP
32 lines
842 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">
|
|
<div id="compare-generic"></div>
|
|
<script type="text/javascript">//<![CDATA[
|
|
<?php
|
|
foreach ($this->cmpItems as $iId => $iData):
|
|
echo ' g_items.add('.$iId.', '.Util::toJSON($iData).");\n";
|
|
endforeach;
|
|
?>
|
|
new Summary(<?=Util::toJSON($this->summary); ?>);
|
|
//]]></script>
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|