-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
41 lines (36 loc) · 1.94 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
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" ng-app="alohaShowcase">
<head>
<title>Aloha Editor Example</title>
<!-- load the Aloha Editor CSS styles -->
<link href="/aloha-editor/src/css/aloha-common-extra.css" rel="stylesheet" type="text/css" />
<!-- ALOHA SCRIPTS -->
<!-- load the jQuery and require.js libraries -->
<script type="text/javascript" src="/aloha-editor/src/lib/require.js"></script>
<script type="text/javascript" src="/aloha-editor/src/lib/vendor/jquery-1.7.2.js"></script>
<!-- load the Aloha Editor core and some plugins -->
<script src="/aloha-editor/src/lib/aloha.js"
data-aloha-plugins="common/ui,
common/format,
common/list,
common/link,
common/highlighteditables">
</script>
<!-- ANGULAR SCRIPTS -->
<script src="js/lib/angular.js"></script>
<script src="js/lib/angular-resource.js"></script>
<script src="js/lib/bootstrap.js"></script>
<!-- CUSTOM SCRIPTS -->
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controller.js"></script>
<script src="js/angular-aloha.js"></script>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/animation.css" rel="stylesheet">
</head>
<body ng-app="alohaShowcase">
<div style="padding-top: 20px" class="container" ng-view >
</div>
</body>
</html>