-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 2.52 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CyanDreamProject: Home</title>
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body class="cbp-spmenu-push">
<nav class="cbp-spmenu cbp-spmenu-vertical cbp-spmenu-left" id="cbp-spmenu-s1">
<h3>Menu</h3>
<a href="changelog.html">Changelog</a>
<a href="guide.html">Compiling Guide</a>
<a href="devices.html">Device List</a>
<a href="http://yauniks.dynvpn.de:86">Downloads</a>
<a href="https://github.com/CyanDreamProject">Source Code</a>
</nav>
<div class="container">
<header class="clearfix">
<section class="buttonset">
<!-- Class "cbp-spmenu-open" gets applied to menu and "cbp-spmenu-push-toleft" or "cbp-spmenu-push-toright" to the body -->
<button id="showLeftPush">Menu</button>
</section>
<span>CyanDreamProject</span>
<h1><a href="http://www.android.com/versions/kit-kat-4-4/">Based on Android 4.4 KitKat</a></h1>
</header>
<div class="main">
<font color="white"><h2>CyanDream was created to serve a purpose - There are lots of good ROM's in this world. But most of the time we don't use half of those features.<br/>
CyanDream was created to only have the features we only really use, and to be stable and fast. We don't want a ROM like PAC-Man, where the whole ROMS have been merged, we just want specific features<br/>
So our goal is to make our perfect ROM that has all the features from each ROM that we like.</font></h2>
</div>
<p align="center"><image src="images/homepage/rotate.php" width="400px" height="200px"/></p>
</div>
<!-- Classie - class helper functions by @desandro https://github.com/desandro/classie -->
<script src="js/classie.js"></script>
<script>
var menuLeft = document.getElementById( 'cbp-spmenu-s1' ),
showLeftPush = document.getElementById( 'showLeftPush' ),
body = document.body;
showLeftPush.onclick = function() {
classie.toggle( this, 'active' );
classie.toggle( body, 'cbp-spmenu-push-toright' );
classie.toggle( menuLeft, 'cbp-spmenu-open' );
disableOther( 'showLeftPush' );
};
function disableOther( button ) {
if( button !== 'showLeftPush' ) {
classie.toggle( showLeftPush, 'disabled' );
}
}
</script>
</body>
</html>