mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
27 lines
668 B
PHP
27 lines
668 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
$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');
|
|
|
|
if ($this->inputbox):
|
|
$this->brick(...$this->inputbox); // $templateName, [$templateVars]
|
|
elseif ($this->confirm):
|
|
$this->localizedBrick('confirm-delete-account');
|
|
else:
|
|
$this->localizedBrick('delete-account');
|
|
endif;
|
|
?>
|
|
</div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|