This repository has been archived by the owner on May 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
49 lines (37 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<title>eSteem</title>
<meta charset="utf-8">
<link href="scripts/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="node_modules/textangular/dist/textAngular.css" type="text/css">
<link href="scripts/css/ionic.css" rel="stylesheet">
<link href="scripts/css/style.css" rel="stylesheet">
<script type="text/javascript" src="scripts/menu/menu.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/ionic-sdk/release/js/ionic.bundle.min.js"></script>
<script src="node_modules/ngstorage/ngStorage.js"></script>
<script src="node_modules/ng-cordova/dist/ng-cordova.js"></script>
<script src="node_modules/markdowndeep/MarkdownDeep.js"></script>
<script src="node_modules/ion-floating-menu/dist/ion-floating-menu.js"></script>
<script src="node_modules/angular-qr/lib/qrcode.js"></script>
<script src="node_modules/angular-qr/src/angular-qr.js"></script>
<script src="node_modules/marked/marked.min.js"></script>
<script src="node_modules/angularjs-slider/dist/rzslider.min.js"></script>
<script src="node_modules/angular-translate/dist/angular-translate.min.js"></script>
<link href="node_modules/angularjs-toaster/toaster.min.css">
<script src="node_modules/angularjs-toaster/toaster.min.js"></script>
<script src="node_modules/textangular/dist/textAngular-rangy.min.js"></script>
<script src="node_modules/textangular/dist/textAngular-sanitize.min.js"></script>
<script src="node_modules/textangular/dist/textAngular.min.js"></script>
<script src="node_modules/textangular/dist/textAngularSetup.js"></script>
<script src="scripts/src/controllers.js"></script>
<script src="scripts/src/services.js"></script>
<script src="scripts/src/app.js"></script>
</head>
<body ng-app="steem">
<ion-nav-view>
</ion-nav-view>
<toaster-container toaster-options="{'close-button': true, 'position-class': 'toast-bottom-right'}"></toaster-container>
</body>
</html>