Basic HTML display done
[feedcatcher.git] / app / views / feed / show.html.erb
diff --git a/app/views/feed/show.html.erb b/app/views/feed/show.html.erb
new file mode 100644 (file)
index 0000000..374ee87
--- /dev/null
@@ -0,0 +1,7 @@
+<h1>Contents of feed <%= params[:id] %></h1>
+<dl>
+  <% for item in @feed_items %>
+    <dt><%= h item.title %></dt>
+    <dd><em><%= h item.description %></em></dd>
+  <% end %>
+</dl>