forked from kendo-labs/angular-kendo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·73 lines (64 loc) · 2.25 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
<!doctype html>
<html ng-app="SampleApp">
<head>
<meta charset="utf-8">
<title>Angular Kendo</title>
<link href="http://cdn.kendostatic.com/2012.3.1315/styles/kendo.common.min.css" rel="stylesheet">
<link href="http://cdn.kendostatic.com/2012.3.1315/styles/kendo.bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="directive-sample/css/bootstrap.min.css">
</head>
<style>
.buffer {
margin-top: 20px;
}
.body {
margin-top: 140px;
}
.sidebar {
top: 150px;
position: fixed;
width: 180px;
}
h3 { position:relative; }
h3 span { position:absolute; top:-140px;}
</style>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="#" class="brand">
<img class="logo" src="directive-sample/css/img/angular-kendo.png" alt="">
<h1 style="display: inline">Angular Kendo</h1>
</a>
</div>
</div>
</div>
<div class="container body">
<div class="row">
<div class="span3">
<ul class="nav nav-list sidebar">
<li class="nav-header">Getting Started</li>
<li class="active"><a href="#installation">Installation</a></li>
<li><a href="#simple">Simple Widget Creation</a></li>
<li><a href="#dom">Creation From Existing Elements</a></li>
<li class="nav-header">Remote Data</li>
<li><a href="#datasource">Kendo UI DataSource</a></li>
</ul>
</div>
<div class="span9">
<ng-include src="'directive-sample/partials/home.html'" autoscroll ng-controller="HomeCtrl"></ng-include>
</div>
</div>
</div>
<!-- In production use:
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script>
-->
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
<script src="http://cdn.kendostatic.com/2012.3.1315/js/kendo.all.min.js"></script>
<script src="angular-kendo.js"></script>
<script src="directive-sample/js/app.js"></script>
<script src="directive-sample/js/controllers.js"></script>
</body>
</html>