-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (55 loc) · 2.62 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Backbone + React</title>
<link rel="stylesheet" href="assets/vendor/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/component.css">
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=PT+Sans:400,700|Open+Sans:400,300,700'>
</head>
<body>
<header class="header">
<div class="container">
<div class="col-md-12">
<h1><a href="#">blogMV*</a></h1>
</div>
</div>
</header>
<div class="jumbotron">
<div class="container">
<h1>Backbone + React</h1>
<p>This is an example of the Single Page App built with Backbone and React.</p>
</div>
</div>
<div id="blog">
<section class="container main">
<p>Please, wait...</p>
</section>
</div>
<footer id="footer">
<p>
Made with ❤ by a bunch of geeks from the island of magic |
<a href="https://twitter.com/zigolis">@zigolis</a>
<a href="https://twitter.com/fjorgemota">@fjorgemota</a>
<a href="https://twitter.com/chiefgui">@chiefgui</a>
<a href="https://twitter.com/rcarvalhojs">@rcarvalhojs</a>
</p>
</footer>
<script src="assets/vendor/react/JSXTransformer.js"></script>
<script src="assets/vendor/react/react-with-addons.min.js"></script>
<script src="assets/vendor/jquery/dist/jquery.js"></script>
<script src="assets/vendor/underscore/underscore.js"></script>
<script src="assets/vendor/backbone/backbone.js"></script>
<script src="assets/js/models/comment.js"></script>
<script src="assets/js/collections/comments.js"></script>
<script src="assets/js/models/article.js"></script>
<script src="assets/js/collections/articles.js"></script>
<script type="text/jsx" src="assets/js/components/comment-item.jsx"></script>
<script type="text/jsx" src="assets/js/components/comment-list.jsx"></script>
<script type="text/jsx" src="assets/js/components/article-item.jsx"></script>
<script type="text/jsx" src="assets/js/components/article-list.jsx"></script>
<script type="text/jsx" src="assets/js/components/write-comment.jsx"></script>
<script src="assets/js/router.js"></script>
<script type="text/jsx" src="assets/js/bootstrap.jsx"></script>
</body>
</html>