blob: ccca3233d08bbc9e06dd54e95eba285b555614ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<p>
<strong>Title:</strong>
<%= @node.title %>
</p>
<p>
<strong>Content:</strong>
<%= @node.content %>
<% @node.children.each do |child| %>
<%= child.id %>
<% end %>
</p>
|