-
Notifications
You must be signed in to change notification settings - Fork 4
/
template.php
47 lines (41 loc) · 972 Bytes
/
template.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
37
38
39
40
41
42
43
44
45
46
47
<?php
function style_top($title)
{
?>
<html>
<head>
<title>HLx Pawn Web Compiler</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="bluebliss.css" />
</head>
<body>
<div id="mainContentArea">
<div id="contentBox">
<div id="title"></div>
<div id="linkGroup">
<div class="link"><a href="index.php">Home</a></div>
<div class="link"><a href="amxmodx.php">AMXModX</a></div>
<div class="link"><a href="sourcemod.php">SourceMod</a></div>
<div class="link"><a href="stats.php">Stats</a></div>
</div>
<div id="blueBox">
<div id="header"></div>
<div class="contentTitle"><?php echo $title; ?></div>
<br/>
<div class="pageContent">
<?php
}
function style_bot()
{
?>
</div>
<br/>
<div id="footer">design by <a href="http://www.bryantsmith.com">bryant smith</a> | script by <a href="https://github.com/yamikaitou/HLX-Pawn-Web-Compiler">ryan leblanc</a> </div>
</div>
</div>
</div>
</body>
</html>
<?php
}
?>