This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
85 lines (68 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Aries</title>
<!--/
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
010000010111001011010010110010101110011
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
A R I E S
░░░░░░░░░
/-->
<meta name="application-name" content="Aries"/>
<meta name="author" content="Paul Anthony Webb × Ideas Never Cease"/>
<meta name="description" content="Browser for the OS of the future. http://hikar.io"/>
<link rel="stylesheet" href="resources/css/style.css"/>
<link rel="shortcut icon" href="resources/images/favicon-default.png"/>
<script src="resources/scripts/vendor/jquery.min.js"></script>
<script src="resources/scripts/plugins/nprogress.js"></script>
<script src="resources/scripts/plugins/uri.js"></script>
<script src="resources/scripts/plugins/tabby.js"></script>
<script src="resources/scripts/plugins/macKeys.js"></script>
<script src="resources/scripts/aries.js"></script>
</head>
<body>
<section id="aries-titlebar">
<h1>Aries</h1>
</section>
<section id="aries-powerbar">
<div id="browsing-actions" class="button-group">
<button class="app-settings"></button>
<button id="-aries-history-back" class="app-go-back"></button>
<button id="-aries-history-forth" class="app-go-forth"></button>
</div>
<input id="-url-bar" type="text" placeholder="Input an address or query" onkeydown="if (event.keyCode == 13 || event.which == 13) { goThere(); }"/>
<div id="-url-bar-mask"></div>
<div id="status-bar"></div>
<div id="tab-wrapper">
</div>
<div id="window-actions" class="button-group">
<button class="app-minimize"></button>
<button class="app-maximize"></button>
<button class="app-close"></button>
</div>
</section>
<section id="aries-showcase">
<nav id="bt-menu" class="bt-menu">
<ul>
<li><a href="#">Link #01</a></li>
<li><a href="#">Link #02</a></li>
<li><a href="#">Link #03</a></li>
<li><a href="#">Link #04</a></li>
<li><a href="#">Link #05</a></li>
</ul>
</nav>
<div id="showcase__loader"></div>
<div class="linker"></div>
</section>
<script>
tabby.init();
</script>
<!--/
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
/-->
</body>
</html>