Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created November 25, 2012 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyhawthorne/4145726 to your computer and use it in GitHub Desktop.
Save andyhawthorne/4145726 to your computer and use it in GitHub Desktop.
<h1><%=@count%> Notes (<%=@cat.name%>)</h1>
<% unless @notes.nil? %>
<ul>
<% @notes.each do |note| %>
<li><a href="/note/<%= note.id %>"><%= note.title %></a> </li>
<% end %>
</ul>
<%= will_paginate @notes %>
<% else %>
<p>Were there notes in this category? I can't find any...</p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment