Files
aowow/template/pages/roster.tpl.php
Sarjuuk 3a6c86092b Core/Compat
* create namespace Aowow to avoid naming conflicts
 * inclues/libs/ is outside of the Aowow namespace
2025-04-01 22:32:37 +02:00

37 lines
800 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 id="roster-status" class="profiler-message" style="display: none"></div>
<div class="text">
<?php $this->brick('redButtons'); ?>
<h1 class="first"><?=$this->name; ?></h1>
<?php
// subject statistics here
if (isset($this->extraHTML)):
echo $this->extraHTML;
endif;
?>
</div>
<?php
$this->brick('lvTabs');
?>
<div class="clear"></div>
</div><!-- main-contents -->
</div><!-- main -->
<?php $this->brick('footer'); ?>