blob: 08ac5649f69d946924b7a1ae744af6ac6a7a6dd0 (
plain)
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
|
<%
# deprecated: switched to theme templates
%><!DOCTYPE html>
<html lang='en-US'>
<head>
<meta charset="utf-8"/>
<title><%=
h(@item["name"])
%></title>
<%
# TODO: add theme styles
%>
</head>
<body>
<b>blog post</b>
<div class='post'>
<b><%= h(@item["name"]) %></b><br/>
<b>
by <%= h(@item["user_name"]) %>
on <%= h(@item["posted_at_text"]) %>
</b><br/><br/>
<%= @item["body"] %>
</div>
</body>
<%
# TODO: add theme scripts
%>
</html>
|