Newbie question, I understand how to include simple lists in layouts with:
<h1>Friends</h1>
<ol>
<% data.people.friends.each do |f| %>
<li><%= f %></li>
<% end %>
</ol>
but is there a simple way to include nested lists for data such as:
people:
- family
- tom
- dick
- harry
- friends
- tim
- duck
- hairy
- dog
- enemies
- georgew
- billg
thanks.