-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
68 lines (68 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="http://spine.github.io/spine.css">
<title>Spine JS</title>
</head>
<body>
<nav role="navigation" class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" data-toggle="collapse" data-target=".navbar-collapse" class="navbar-toggle collapsed"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><a href="/" title="Source on Github" class="navbar-brand">Spine</a><a id="docVersion" href="https://github.com/spine/spine/archive/v.1.6.2.zip" class="navbar-text">v1.6.2 <span class="glyphicon glyphicon-cloud-download"></span></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="http://spine.github.io/api/">API</a></li>
<li><a href="http://spine.github.io/docs/">Docs</a></li>
<li><a href="https://github.com/spine/spine">GitHub</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1 class="text-center">Spine.js</h1>
<p class="text-center">The Model View Controller pattern is at the heart of Spine, and absolutely integral to modern JavaScript applications.</p>
<p class="text-center"><a href="docs/started.html" role="button" class="btn btn-primary btn-lg">Get Building!</a></p>
</div>
<div class="container"></div>
<div class="row">
<div class="col-md-12">
<h1 class="text-center">Build Awesome JavaScript MVC Applications</h1>
<h4 class="text-center">Spine is a simple and lightweight framework, and doesn't consist of a vast amount of complex widgets to configure and theme.</h4>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="well well-lg">
<div class="glyphicon glyphicon-education banner-icon"></div>
<h4 class="text-center">Our getting started page discusses conventions and philosophies employed by Spine.</h4>
<p class="text-center dropped-button"><a href="docs/" role="button" class="btn btn-primary btn-lg">Get Started</a></p>
</div>
</div>
<div class="col-md-4">
<div class="well well-lg">
<div class="glyphicon glyphicon-blackboard banner-icon"></div>
<h4 class="text-center">In addition to very approachable source code we aim to have great documentation.</h4>
<p class="text-center dropped-button"><a href="api/" role="button" class="btn btn-primary btn-lg">View Documentation</a></p>
</div>
</div>
<div class="col-md-4">
<div class="well well-lg">
<div class="glyphicon glyphicon-road banner-icon"></div>
<h4 class="text-center">Nothing better than examples to clarify nuance. If you are having difficulties, this page should get you up to speed.</h4>
<p class="text-center dropped-button"><a href="examples.html" role="button" class="btn btn-primary btn-lg">See Examples</a></p>
</div>
</div>
</div>
</div>
</body>
</html>