folder.html.erb 233 Bytes
<% unless folder.body.blank? %>
  <div>
    <%= folder.body %>
  </div>
  <hr/>
<% end %>

<% if folder.children.empty? %>
  <em><%= _('(empty folder)') %></em>
<% else %>
  <%= list_contents(:contents=>folder.children) %>
<% end %>