diff options
Diffstat (limited to 'app/views/resources/_resource.html.erb')
-rw-r--r-- | app/views/resources/_resource.html.erb | 10 |
1 files changed, 10 insertions, 0 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> |