Skip to content

Instantly share code, notes, and snippets.

@zealoushacker
Forked from lmarburger/_base.html.erb
Created July 22, 2011 19:45
Show Gist options
  • Save zealoushacker/1100256 to your computer and use it in GitHub Desktop.
Save zealoushacker/1100256 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Site</title>
</head>
<body class="app">
<%= render :partial => 'layouts/flashes' %>
<%= yield %>
</body>
</html>
<%= render :layout => 'layouts/base' do %>
<%= yield %>
<% end %>
<h1>Listing projects</h1>
<table id="projects">
<tr>
<th>Name</th>
<th></th>
</tr>
<% @projects.each do |project| %>
<tr>
<td><%= link_to project.name, project %></td>
<td><%= link_to 'Destroy', project, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Project', new_project_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment