blob: 0c9332e755029f5d1d47d4d5159097804b240820 (
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
|
<!DOCTYPE html>
<html lang='en-US'>
<head>
<meta charset="utf-8"/>
<title><%=
h(@item["name"])
%></title>
<%
# TODO: add theme styles
%>
</head>
<body>
<div class='post'>
<b>page: <%= 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>
|