-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (49 loc) · 2.78 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
<!doctype html>
<html>
<head>
<title>LDC Via Mail</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<!--set the hidden class here, so everything is immediately hidden-->
<style type="text/css">
.hidden {
display:none;
}
</style>
<!-- polyfill for html imports & xcomponents resources -->
<script type="text/javascript" src="./bower_components/ldcvia-xcomponents/dist/js/xc-base.js"></script>
<script type="text/javascript" src="./bower_components/webcomponentsjs/HTMLImports.min.js"></script>
<!-- <link rel="import" href="./bower_components/ldcvia-xcomponents/dist/includes/includes.html"> -->
<script src="./bower_components/ldcvia-xcomponents/dist/libs-angular.js"></script>
<script src="./bower_components/jquery/dist/jquery.min.js"></script>
<!-- include:pouch -->
<!-- include:lowla -->
<!--angular-pouch-->
<script type="text/javascript" src="./bower_components/angular-pouchdb/dist/angular-pouchdb.js"></script>
<!--morris/ raphael (for the charts)-->
<script src="./bower_components/morris.js/morris.min.js"></script>
<script type="text/javascript" src="./bower_components/raphael/raphael-min.js"></script>
<link rel="stylesheet" type="text/css" href="./bower_components/morris.js/morris.css">
<!--blueimp libs for the photo uploader-->
<script type="text/javascript" src="./bower_components/blueimp-canvas-to-blob/js/canvas-to-blob.min.js"></script>
<script type="text/javascript" src="./bower_components/blueimp-load-image/js/load-image.all.min.js"></script>
<!--textangular html editor-->
<script type="text/javascript" src="./bower_components/textAngular/dist/textAngular-rangy.min.js"></script>
<script type="text/javascript" src="./bower_components/textAngular/dist/textAngular.min.js"></script>
<!-- bootstrap.js / bootcards.js -->
<script src="./bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./bower_components/bootcards/dist/js/bootcards.min.js"></script>
<script src="./bower_components/ldcvia-xcomponents/dist/xcomponents.js"></script>
<!-- styles -->
<link rel="stylesheet" href="./bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="./bower_components/textAngular/src/textAngular.css">
<link rel="stylesheet" href="./bower_components/ldcvia-xcomponents/dist/css/styles.css">
<link rel="stylesheet" href="site.css">
<!-- xcomponents app config -->
<script src="mail.js"></script>
<link rel="icon" href="favicon.ico" type="image/vnd.microsoft.icon">
</head>
<body ng-view>
</body>
</html>