-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
82 lines (65 loc) · 3.08 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<title>Dirsec.net</title>
<!-- Begin metainformation tags -->
<meta charset="UTF-8">
<meta name="description" content="TF2 Quality Custom Maps">
<meta name="keywords" content="TF2 Custom Maps Gaming Team Fortress">
<meta name="author" content="The Dirsec Team.">
<!-- Begin external file (css/js) links -->
<link rel="stylesheet" type="text/css" href="media/stylesheet.css">
</head>
<body>
<!-- Basic wrapper for the content to stay centered -->
<div id="body-wrapper">
<!-- Begin main div for the header -->
<div class="header content" id="mainheader">
<!-- Container for the logo icon -->
<div class="header content" id="logo">
</div>
<!-- Container for the actual name text -->
<div class="header content" id="title">
<h1>Dirsec.net</h1>
</div>
</div>
<!-- Begin seperator section (with tagline) -->
<div class="seperator content" id="top-seperator">
<!-- Container for the tagline itself -->
<div class="content" id="tagline">
<!-- PHP to choose a tagline from a list -->
<?php
$subtitles = array(
1 => "Over 30 Quality Custom Maps!",
2 => "An Authentic TF2 Experience!",
);
$max = 2;
$min = 1;
echo($subtitles[rand($min, $max)]);
?>
</div>
<!-- List of players in game. Will implement in the future -->
<div class="content" id="player count">
<!-- Leave blank for now since requires API -->
</div>
</div>
<!-- Begin main website body -->
<div class="content body" id="body-background">
<!-- Placeholder for now... -->
</div>
<!-- Begin seperator section (bottom) -->
<div class="seperator content" id="bottom-seperator">
<!-- Container for an email address (contact info) -->
<div class="content" id="contactinfo">
<!-- Will use recaptcha mailhide to protect spam -->
<a href="http://www.google.com/recaptcha/mailhide/d?k=01g-3xbBaAqHRpIK6ZancRVA==&c=1kevnjVi_aJfQ-xQYx1ydw-tuIeSQpGAbaRTxEGMH0E=" onclick="window.open('http://www.google.com/recaptcha/mailhide/d?k\07501g-3xbBaAqHRpIK6ZancRVA\75\75\46c\0751kevnjVi_aJfQ-xQYx1ydw-tuIeSQpGAbaRTxEGMH0E\075', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">Contact Us!</a>
</div>
</div>
<!-- Begin footer with maps list -->
<div class="content footer" id="footer">
<h2 id="maplist-header">
Maps:
</h2>
</div>
</div>
</body>
</html>