-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
53 lines (52 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<link type="text/css" href="homepage.css" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="VersionIcon/SM40.png"/>
<?php
$CurrentPage = "About";
$PageColor = "#002211";
?>
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #002211;
}
</style>
<title>StepMania Archive</title>
<link rel="canonical" href="https://josevarela.net/SMArchive/" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="title" content="StepMania Archive">
<meta name="description" content="A project to collect and preserve almost everything from StepMania, and the contents made by the community itself.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://josevarela.net/SMArchive/">
<meta property="og:title" content="StepMania Archive">
<meta property="og:description" content="A project to collect and preserve almost everything from StepMania, and the contents made by the community itself.">
<meta property="og:image" content="">
</head>
<body>
<div id="container">
<div class="content-container wide-container">
<!-- Rip Center, as it's being phased out. have to use this instead. -->
<div class="CenterItem">
<img style="width: 60%" src="Headers/About.png">
</div>
<div class="content">
<a href="About/">About the archive</a>
</div>
<br>
<div class="content">
<a href="Announcers/"><img src="Headers/Announcers.png"></a>
<a href="Builds/"><img src="Headers/Builds.png"></a>
<a href="NoteSkins/"><img src="Headers/NoteSkins.png"></a>
<a href="Themes/"><img src="Headers/Themes.png"></a>
<a href="Characters/"><img src="Headers/Characters.png"></a>
<a href="Footage/"><img src="Headers/Footage.png"></a>
<a href="Tools/"><img src="Headers/Tools.png"></a>
<a href="OtherSims/"><img src="Headers/OtherSims.png"></a>
</div>
<?php include 'php/Footer.php' ?>
</div>
</div>
</body>
</html>