forked from jollen/jollen.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.33 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Game Bubble</title>
<link rel="stylesheet" href="stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="styles/main.css">
<script src='javascripts/jquery/dist/jquery.min.js'></script>
<script src='javascripts/jquery-tmpl/jquery.tmpl.min.js'></script>
</head>
<body>
<script id='postTemplate' type='text/x-jquery-tmpl'>
<div class="row">
<div class="col-lg-5">
<div class="media">
<a class="pull-left" href="#">
<img class="media-object dp img-circle" src="http://lorempixel.com/100/100/" style="width: 100px;height:100px;">
</a>
<div class="media-body">
<h4 class="media-heading">${subject}</h4>
<h5>${date}</h5>
<button id="subject" data-id="${id}" class="btn btn-danger">Read More</button>
<hr style="margin:8px auto">
<span class="label label-default">HTML5/CSS3</span>
<span class="label label-default">jQuery</span>
<span class="label label-info">CakePHP</span>
<span class="label label-default">Android</span>
</div>
</div>
</div>
</div>
</script>
<div id="content">
</div>
<script src='javascripts/main.js'></script>
</body>
</html>