Sha256: 196e6da7d6e64c03d8fc333c474fbfebf4b0208c711357459d694d46b1648196
Contents?: true
Size: 409 Bytes
Versions: 26
Compression:
Stored size: 409 Bytes
Contents
<div data-role="header"> <h1>Listing notes</h1> </div> <div data-role="content"> <ul data-role="listview"> <% @notes.each do |note| %> <li> <%= link_to note do %> <h1><%= note.title %></h1> <%= truncate note.body, :length => 25 %> <% end %> </li> <% end %> </ul> </div> <div data-role="footer"> <%= link_to 'New Note', new_note_path %> </div>
Version data entries
26 entries across 26 versions & 1 rubygems