-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.html
55 lines (42 loc) · 1.03 KB
/
view.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
<html>
<head>
<title>FABE - Fricking Awesome Blog Engine</title>
<link rel="stylesheet" type="text/css" href="../style.css" />
</head>
<body>
<div id="page">
<div id="head">
<h1><a href="../">FABE</a></h1>
<h2>Fricking Awesome Blog Engine</h2>
</div><!-- head -->
<div id="content">
<div id="side">
<div class="panel">
<h1>Latest entries</h1>
<ul>
$code( for(i in data.entries){ )
<li><a href="$(data.entries[i].url)">$(data.entries[i].title)</a></li>
$code( } )
</ul>
</div>
<div class="panel">
<h1>My blog roll</h1>
<ul>
<li><a href="http://javascriptoid.appspot.com">Javascriptoid</a></li>
</ul>
</div>
</div><!-- side -->
<div id="main">
<div class="post">
<h1>$(data.post.title)</h1>
<time>$(new Date(data.post.date).format('Y-m-d'))</time>
<div>$(data.post.content)</div>
</div><!-- post -->
</div><!-- Main -->
</div><!-- content -->
<div id="foot">
<p>© 2010 - WTFPL - FABE</p>
</div>
</div><!-- page -->
</body>
</html>