-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
91 lines (79 loc) · 3.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Backbone + ***</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 + ***</h1>
<p>This is an example of the Single Page App built with Backbone and ***.</p>
</div>
</div>
<section class="container main">
<div class="row">
<div class="col-md-3">
<h2>JS News</h2>
<ul class="list-group">
<li><a href="#" class="list-group-item">Hello World</a></li>
<li><a href="#" class="list-group-item">Bye World</a></li>
</ul>
</div><!--col-md-3-->
<section class="col-md-9">
<article>
<h2>Hello World</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequuntur, voluptatum.
Provident accusamus sit, commodi corrupti illo, veniam possimus minima rerum itaque. Magni,
beatae, facere.</p>
</article>
<h2>Discussion</h2>
<ul class="discussion">
<li>
<b>Foo</b>
<p>Hello, World</p>
</li>
<li>
<b>Foo</b>
<p>Bye, World</p>
</li>
</ul>
</section><!--col-md-9-->
</div>
</section><!-- container -->
<section class="comments">
<h3>Write a comment</h3>
<form role="form">
<div class="form-group col-md-6">
<input type="text" id="name" class="form-control input-lg" placeholder="Name">
</div>
<div class="form-group col-md-6">
<input type="email" id="email" class="form-control input-lg" placeholder="Email">
</div>
<div class="form-group col-md-12">
<textarea id="msg" class="form-control input-lg" placeholder="Comment"></textarea>
<button class="btn btn-lg btn-primary btn-block" type="submit">Post comment</button>
</div>
</form>
</section>
<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>
</body>
</html>