aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/notes/index.html.erb
blob: 5019db5c02e9763cfd346e6f5b1dab5121db8a9f (plain)
1
2
3
4
5
6
7
8
9
<% @notebooks.each do |b| %>
	<%= b.name %><br />

	<% b.notes.each do |n| %>
		<%= n.title %><br />
		<%= n.enml.html_safe %><br />
		<%= n.tags %>
	<% end %>
<% end %>