aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/web/views/index.erb
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/http/web/views/index.erb')
-rw-r--r--interfaces/http/web/views/index.erb19
1 files changed, 19 insertions, 0 deletions
diff --git a/interfaces/http/web/views/index.erb b/interfaces/http/web/views/index.erb
new file mode 100644
index 0000000..80e64a5
--- /dev/null
+++ b/interfaces/http/web/views/index.erb
@@ -0,0 +1,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>