Created
November 25, 2012 22:45
-
-
Save andyhawthorne/4145726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1><%=@count%> Notes (<%[email protected]%>)</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