-
Notifications
You must be signed in to change notification settings - Fork 3
/
staff.php
36 lines (25 loc) · 896 Bytes
/
staff.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
define('TAB_ID', 5);
define('PAGE_ID', 16);
require_once "global.php";
$tpl->Init();
$tpl->AddGeneric('head-init');
$tpl->AddIncludeSet('generic');
$tpl->AddIncludeFile(new IncludeFile('text/css', '%www%/web-gallery/v2/styles/newcredits.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/javascript', '%www%/web-gallery/static/js/newcredits.js'));
$tpl->WriteIncludeFiles();
$tpl->AddGeneric('head-overrides-generic');
$tpl->AddGeneric('head-bottom');
$tpl->AddGeneric('generic-top');
$tpl->Write('<div id="column1" class="column">');
$tpl->AddGeneric('comp-staff');
$tpl->Write('</div>');
$tpl->Write('<div id="column2" class="column">');
$tpl->AddGeneric('comp-staff-about');
$tpl->Write('</div>');
$tpl->AddGeneric('generic-column3');
$tpl->AddGeneric('footer');
$tpl->SetParam('page_title', 'Equipe Habbo');
$tpl->SetParam('body_id', 'home');
$tpl->Output();
?>