blob: 80e64a5db2012b2b3121d3fa276f0a3ed2824805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title><%= $config.title %></title>
</head>
<body>
<h1 id="title"><%= $config.title %></h1>
<% for post in @posts %>
<h2><%= post.title %></h2>
<div class="meta">
<p><%= post.created_at %></p>
</div>
<div class="content">
<%= post.body %>
</div>
<% end %>
</body>
</html>
|