-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAbout.html
More file actions
128 lines (125 loc) · 3.22 KB
/
About.html
File metadata and controls
128 lines (125 loc) · 3.22 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<title>speedrun.com - About</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" type="text/css" href="Assets/Favicon.png">
<link rel="stylesheet" type="text/css" href="Assets/Global.css">
<link rel="stylesheet" type="text/css" href="Assets/Themes/Default.css">
<!--[if lte IE 9]>
<script src="Assets/HTML5Shiv/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Site header and navigation menus. -->
<header id="navbar">
<section class="wrapper table-display">
<h1 class="hidden">Speedrun.com - About</h1> <!-- For SEO purposes. -->
<div id="logo">
<a href="index.html">
<img src="Assets/Logo.png" alt="Speedrun.com" />
</a>
</div>
<nav>
<ul>
<li>
<a href="Games/index.html">Games</a>
</li>
<li>
<a href="Streams/index.html">Streams</a>
</li>
<li>
<a href="Resources/index.html">Resources</a>
</li>
<li>
<a href="Forums/index.html">Forums</a>
</li>
</ul>
</nav>
<form id="search">
<input type="text" placeholder="Search for games, series, marathons or users" />
</form>
<nav class="right">
<ul>
<li>
<a class="username" href="Users/ExampleUser.html" style="color: #E44;">Example User</a>
</li>
<li class="nav-button-dropdown">
<a>
<img src="Assets/Icons/ModPanel.png" alt="Mod Panel">
</a>
<ul>
<li>
<a href="Users/RunsAwatingVerification.html">
<strong>0</strong>
Runs Awaiting Verification
</a>
</li>
</ul>
</li>
<li class="nav-button-dropdown">
<a class="nav-button">
<img src="Assets/Icons/Notifications.png" alt="Mod Panel">
</a>
<ul>
<li>
<a href="Games/index.html">
Your game request has been approved
<small>1 month ago</small>
</a>
</li>
</ul>
</li>
<li class="nav-button-dropdown">
<a class="nav-button">
<img src="Assets/Icons/Messages.png" alt="Mod Panel">
</a>
<ul>
<li>
<span>Sorry, this isn't ready yet.</span>
</li>
</ul>
</li>
<li class="nav-button-dropdown">
<a class="nav-button">
<img src="Assets/Icons/Settings.png" alt="Mod Panel">
</a>
<ul>
<li>
<a href="Users/EditProfile.html">Edit Profile</a>
</li>
<li>
<a href="Users/Settings.html">Settings</a>
</li>
<li>
<a href="#">Log out</a>
</li>
</ul>
</li>
</ul>
</nav>
</section>
</header>
<!-- End site header and navigation menus. -->
<!-- Main content area box. -->
<main class="wrapper" role="main">
<!-- Content box. -->
<article>
<h2>About</h2>
</article>
<!-- End content box. -->
</main>
<!-- End main content area. -->
<!-- Footer. -->
<footer class="wrapper">
© 2015 ·
<a href="About.html">About</a>
</footer>
<!-- End footer. -->
<!-- Scripts. -->
<script type="text/javascript" src="Assets/jQuery/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="Assets/Generic.js"></script>
<!-- End scripts. -->
</body>
</html>