-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
58 lines (55 loc) · 1.97 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Bonegear v0.0.0</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css">
<style>
body {
padding-top: 30px;
padding-bottom: 30px;
}
.bs-callout {
padding: 20px;
margin: 20px 0;
border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
}
.bs-callout-info {
border-left-color: #1b809e;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="jumbotron">
<h1 class="text-center">Bonegear</h1>
<p class="text-center">Bonegear is an open source Twitter Bootstrap 3^ UI components for your Backbone.js projects.</p>
</div>
<div class="col-md-6">
<div class="bs-callout bs-callout-info">
<h4>Bonegear Alert</h4>
<p>Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.</p>
<a href="examples/alert/index.html" class="btn btn-primary">See Alert Examples</a>
</div>
</div>
<div class="col-md-6">
<div class="bs-callout bs-callout-info">
<h4>Bonegear Notification</h4>
<p>Provide contextual feedback messages for typical user actions with the handful of available and flexible notification messages.</p>
<a href="examples/notification/index.html" class="btn btn-primary">See Notification Examples</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/underscore/underscore-min.js"></script>
<script type="text/javascript" src="bower_components/backbone/backbone.js"></script>
<script type="text/javascript" src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>