1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<h1> suh </h1> <% @rootnodes.each do |rootnode| %> <tr> <td>PARENT: <%= rootnode.title %></td> </tr><br> <em> <% rootnode.children.each do |node| %> <tr> <td>CHILD: <%= node[:title] %></td> </tr><br> <% end %> </em> <% end %>