aboutsummaryrefslogtreecommitdiff
path: root/web/views/index.erb
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-03-02 00:41:56 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-03-02 00:41:56 +0100
commit8d21b802c35d5b1f8e6e868aaa20c1c0066275c9 (patch)
tree7bd3d732d6435d3aa826f1585a5b0a137526fa7f /web/views/index.erb
parent469a4c2424a684524a8323a8a1a3727e1b6a4ed7 (diff)
downloadcomb-8d21b802c35d5b1f8e6e868aaa20c1c0066275c9.tar.gz
Add new interfaces tree, remake database code as 'ruby' interface
This follows the directory structure outlined in my previous commit message.
Diffstat (limited to 'web/views/index.erb')
-rw-r--r--web/views/index.erb19
1 files changed, 0 insertions, 19 deletions
diff --git a/web/views/index.erb b/web/views/index.erb
deleted file mode 100644
index 80e64a5..0000000
--- a/web/views/index.erb
+++ /dev/null
@@ -1,19 +0,0 @@
-<!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>