-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
103 lines (86 loc) · 3.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<nav class="light-blue lighten-1" role="navigation">
<nav>
<div class="nav-wrapper">
<a href="#!" class="brand-logo">OS.js Application Store</a>
<ul class="right hide-on-med-and-down">
<li><a href="submitapp.html">Submit Your App</a></li>
<li><a href="allpkgs.html">View all Applications</a></li>
</ul>
</div>
</nav>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br>
<br>
<h1 class="header center orange-text">Welcome to the OS.js Web Store</h1>
<div class="row center">
<h5 class="header col s12 light">Discover, install, and create OS.js Applications</h5>
</div>
<div class="row center">
<a id="download-button" class="btn-large waves-effect waves-light orange">Get Searching</a>
</div>
<br>
<br>
</div>
</div>
<div class="container">
<div class="section">
<nav>
<div class="nav-wrapper">
<form>
<div class="input-field">
<input id="search" type="search" required>
<label for="search"><i class="material-icons">search</i></label>
<i class="material-icons">close</i>
</div>
</form>
</div>
</nav>
</div>
<br>
<br>
<div class="section">
</div>
</div>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">About OS.js</h5>
<p class="grey-text text-lighten-4">OS.js is a JavaScript web desktop implementation for your browser with a fully-fledged window manager, Application APIs, GUI toolkits and filesystem abstraction.</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Helpful Links</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="http://os.js.org/">Project Page</a></li>
<li><a class="grey-text text-lighten-3" href="https://github.com/andersevenrud/OS.js-v2">Github</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2015 Made by the OS.js Community
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="../../bin/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>