* \n to PHP_EOL * add phpdoc for autocomplete * try to unify indentations * stop mixing quotation marks if possible
33 lines
897 B
PHP
33 lines
897 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
/** @var PageTemplate $this */
|
|
|
|
$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 id="<?=$this->tcType; ?>-classes">
|
|
<div id="<?=$this->tcType; ?>-classes-outer">
|
|
<div id="<?=$this->tcType; ?>-classes-inner"><p><?=$this->chooseType; ?></p></div>
|
|
</div>
|
|
</div>
|
|
<div id="<?=$this->tcType; ?>-itself"></div>
|
|
<script type="text/javascript">
|
|
<?=$this->tcType; ?>_init();
|
|
</script>
|
|
|
|
<div class="clear"></div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|