-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (62 loc) · 1.91 KB
/
Copy pathindex.html
File metadata and controls
80 lines (62 loc) · 1.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>My Blog:</title>
<!-- Libraries -->
<script src="lib/jquery-1.10.2.js"></script>
<script src="lib/json2.js"></script>
<script src="lib/underscore.js"></script>
<script src="lib/backbone.js"></script>
<!-- Application logic -->
<script src="Model/Post.js"></script>
<!-- Views -->
<script src="View/PostView.js"></script>
<script src="View/AppView.js"></script>
<script src="global.js"></script>
</head>
<body>
<div id="app">
<div class="nav">
<h2>LogList</h2>
this is the magic blog for webapi, backbone, ...
<a href="#newpost">New Post</a>
</div>
<div class="postsTab">
<h1>Posts:</h1>
<!--List iof post will be added here-->
<div id="postsList">
</div>
</div>
</div>
<!-- Templates -->
<script type="text/template" id="login-template">
<div class="view post">
<h2><a href="/api/post/<%- permalink %>"><%- title %></a></h2>
Posted <%- createdOn %> <i>By <%- author %></i><br>
<h2>
<label><%- title %></label>
</h2>
<label><%- author %></label>
<p />
<div class="post-body">
<%= body %>
</div>
</div>
</script>
<script type="text/template" id="post-template">
<div class="view post">
<h2><a href="/api/post/<%- permalink %>"><%- title %></a></h2>
Posted <%- createdOn %> <i>By <%- author %></i><br>
<h2>
<label><%- title %></label>
</h2>
<label><%- author %></label>
<p />
<div class="post-body">
<%= body %>
</div>
</div>
</script>
</body>
</html>