<%= title @controller.controller_name.humanize %>
<%= error_messages %> <% for bookmark in @bookmarks %> <% end %>
ID Title
<%=h bookmark.id %> <%=h bookmark.title %> <%= link_to image_tag( 'goto.png' ), bookmark.url rescue "" %><%= link_to image_tag( 'show.png' ), :action => 'show', :id => bookmark %><%= link_to image_tag( 'edit.png' ), :action => 'edit', :id => bookmark %><%= link_to image_tag( 'delete.png' ),{:action => 'destroy', :id => bookmark }, :confirm => 'Are you sure?', :method => :post %>
<%= will_paginate(@bookmarks) %> <%= link_to 'New bookmark', { :action => "new" } %>