This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathindex.html
126 lines (107 loc) · 5.49 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="en" ng-app="app" ng-strict-di>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Built By Will"/>
<meta name="copyright" content="© @@year Built By Will"/>
<meta name="description" content="Booklet - jQuery Plugin" />
<meta name="keywords" content="booklet, jquery, plugin, page flip, page turn, flipbook" />
<link type="image/x-icon" href="favicon.ico" rel="shortcut icon" />
<title ng-bind="title"></title>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!-- build:css(.) content/styles/vendor.css -->
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/angular-motion/dist/angular-motion.css" />
<link rel="stylesheet" href="bower_components/toastr/toastr.css" />
<link rel="stylesheet" href="bower_components/highlightjs/styles/default.css" />
<!-- endbower -->
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/tabs.css" />
<!-- endbuild -->
<!-- build:css(.) content/styles/styles.css -->
<!-- page css -->
<link href="gh-pages-src/content/styles/common.css" type="text/css" rel="stylesheet" media="screen, projection, tv" />
<link href="gh-pages-src/content/styles/booklet.css" type="text/css" rel="stylesheet" media="screen, projection, tv" />
<!-- booklet css -->
<link href="src/jquery.booklet.latest.css" type="text/css" rel="stylesheet" media="screen, projection, tv" />
<!-- endbuild -->
</head>
<body style="padding-top:3rem;">
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser.
Please <a href="//browsehappy.com/">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<div style="position: fixed; top: 0; left: 0; right: 0; background-color: white; padding: 1rem;">
⚠ This project is no longer under active development. You can use as-is or fork the project to make changes.
</div>
<div ng-include="'gh-pages-src/app/includes/header.html'"></div>
<div ng-view class="view"></div>
<div ng-include="'gh-pages-src/app/includes/footer.html'"></div>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
var hostname = window.location.hostname;
if (hostname.indexOf('localhost') === -1) {
ga('create', 'UA-5500036-2', 'builtbywill.com');
}
</script>
<!-- build:js(.) content/scripts/vendor.js -->
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<script src="bower_components/angular-touch/angular-touch.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/angular-strap/dist/angular-strap.js"></script>
<script src="bower_components/angular-strap/dist/angular-strap.tpl.js"></script>
<script src="bower_components/toastr/toastr.js"></script>
<script src="bower_components/highlightjs/highlight.pack.js"></script>
<script src="bower_components/angular-highlightjs/build/angular-highlightjs.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.js"></script>
<script src="bower_components/jquery.easing/js/jquery.easing.js"></script>
<!-- endbower -->
<!-- endbuild -->
<!-- build:js(.) content/scripts/scripts.js -->
<script src="src/jquery.booklet.latest.min.js"></script>
<script src="gh-pages-src/app/app.module.js"></script>
<script src="gh-pages-src/app/shared/constants/constants.module.js"></script>
<script src="gh-pages-src/app/shared/constants/constants.js"></script>
<script src="gh-pages-src/app/shared/logger/logger.module.js"></script>
<script src="gh-pages-src/app/shared/logger/logger.js"></script>
<script src="gh-pages-src/app/shared/exception/exception.module.js"></script>
<script src="gh-pages-src/app/shared/exception/exception-handler.provider.js"></script>
<script src="gh-pages-src/app/shared/directives/directives.module.js"></script>
<script src="gh-pages-src/app/shared/directives/ngReallyClick.js"></script>
<script src="gh-pages-src/app/shared/filters/filters.module.js"></script>
<script src="gh-pages-src/app/shared/filters/mpReverse.js"></script>
<script src="gh-pages-src/app/shared/route/route.module.js"></script>
<script src="gh-pages-src/app/shared/route/route-helper.js"></script>
<script src="gh-pages-src/app/shared/config/config.module.js"></script>
<script src="gh-pages-src/app/shared/config/config.js"></script>
<script src="gh-pages-src/app/config.route.js"></script>
<script>
$(function(){
$('#donate-btn').on('click', function(){
ga('send', 'event', 'button', 'click', { page: "/booklet/donate" });
});
});
</script>
<!-- endbuild -->
</body>
</html>