forked from ripple/ripple-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (89 loc) · 3.95 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
104
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html ng-app="rp" ng-controller="AppCtrl" ng-class="[$route.current.tabClass, $route.current.pageMode]" class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html ng-app="rp" ng-controller="AppCtrl" ng-class="[$route.current.tabClass, $route.current.pageMode]" class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html ng-app="rp" ng-controller="AppCtrl" ng-class="[$route.current.tabClass, $route.current.pageMode]" class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html ng-app="rp" ng-controller="AppCtrl" ng-class="[$route.current.tabClass, $route.current.pageMode]" class="no-js" lang="en"> <!--<![endif]-->
<html ng-app="rp" ng-controller="AppCtrl" ng-class="[$route.current.tabClass, $route.current.pageMode]">
<head>
<meta charset="utf-8">
<title>Ripple: Open Source Payments</title>
<meta name="description" content="">
<meta name="google" value="notranslate" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link href="fonts/stylesheet.css" rel="stylesheet">
<link href="build/css/ripple-desktop.css" rel="stylesheet">
<!-- ENDS CSS -->
<!-- All JavaScript at the bottom, except this Modernizr build.
Modernizr enables HTML5 elements & feature detects for optimal performance.
Create your own custom Modernizr build: www.modernizr.com/download/ -->
<script src="deps/js/modernizr-2.5.3.min.js"></script>
<script src="analytics.js"></script>
</head>
<body>
<!-- WRAPPER -->
<div id="wrapper" class="container">
<!-- HEADER -->
<header>
<!-- LOGO -->
<div id="logo">
<a href="#/">
<img src="img/logo.png" alt="Ripple Logo" />
</a>
</div>
<!-- NAV -->
<nav>
<ul>
<li id="nav-wallet" ng-class="{active: $route.current.mainMenu == 'wallet'}"><a href="#/balance"><span>Wallet</span></a></li>
<li id="nav-send" ng-class="{active: $route.current.mainMenu == 'send'}"><a href="#/send"><span>Send</span></a></li>
<li id="nav-receive" ng-class="{active: $route.current.mainMenu == 'receive'}"><a href="#/receive"><span>Receive</span></a></li>
<li id="nav-advanced" ng-class="{active: $route.current.mainMenu == 'advanced'}"><a href="#/trust"><span>Advanced</span></a></li>
</ul>
</nav>
<!-- ENDS NAV -->
</header>
<!-- ENDS HEADER -->
<!-- MAIN -->
<div role="main" class="main" id="{{$route.current.tabClass}}" ng-view>
</div>
<!-- ENDS MAIN -->
<!-- FOOTER -->
<footer>
<span class="left">
<a href="http://ripple.com/terms" target="_blank">Terms of Service</a>.
</span>
<span class="left">
Version: 0.2.21
</span>
<span class="right">
<a href="https://github.com/rippleFoundation/ripple-client/issues?state=open" target="_blank">Bug reports</a>
</span>
</footer>
<!-- ENDS FOOTER -->
</div>
<!-- ENDS WRAPPER -->
<div id="appLoading">
<img src="img/loading.png" width="32" height="32" alt="" title="" />
Loading...
</div>
<div id="noWebSockets">
<p>
We apologize, but the Ripple Client needs WebSockets in order to function.
Please refer to this page and download a browser that supports WebSockets. Thank you! <br />
<a href="http://caniuse.com/websockets">http://caniuse.com/websockets</a>
</p>
</div>
<!-- JavaScript at the bottom for fast page loading -->
<!-- scripts concatenated and minified via build script -->
<script src="build/dist/deps.js"></script>
<!--[if IE]>
<script src="compat/ie/ws/ws-config.js"></script>
<script src="build/dist/deps_ie.js"></script>
-->
<script src="config.js"></script>
<script src="build/dist/ripple-client-desktop.js?v=0.2.21"></script>
<!-- end scripts -->
</body>
</html>