aboutsummaryrefslogtreecommitdiff
path: root/app/views/resources
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/resources')
-rw-r--r--app/views/resources/_resource.html.erb10
-rw-r--r--app/views/resources/index.html.erb8
2 files changed, 16 insertions, 2 deletions
diff --git a/app/views/resources/_resource.html.erb b/app/views/resources/_resource.html.erb
new file mode 100644
index 0000000..39997ef
--- /dev/null
+++ b/app/views/resources/_resource.html.erb
@@ -0,0 +1,10 @@
+<section id="resource-<%= resource.uuid %>">
+ <header>
+ <h2><%= h resource.name %></h2>
+ <time datetime="<%= h resource.created_at %>" class="created_at">
+ <time datetime="<%= h resource.updated_at %>" class="updated_at">
+ <p class="identifier"><%= resource_url(resource) %></p>
+ </header>
+ <div><%= h resource.description %></div>
+ <code><%= h resource.feature.as_json %></code>
+</section>
diff --git a/app/views/resources/index.html.erb b/app/views/resources/index.html.erb
index 320849a..473bcbb 100644
--- a/app/views/resources/index.html.erb
+++ b/app/views/resources/index.html.erb
@@ -1,2 +1,6 @@
-<h1>Resources#index</h1>
-<p>Find me in app/views/resources/index.html.erb</p>
+<h1>Listing Resources</h1>
+
+<%= paginate @resources %>
+
+<%= render partial: 'resource', collection: @resources %>
+