This commit is contained in:
Christophe Vilayphiou 2012-08-01 17:11:37 +08:00
parent f917adcdf3
commit df9a1e8057
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
<div class="site-map">
<% @items.each_with_index do |item, i| %>
<div class="map-block">
<h4><%= i+1 %><a href='<%= item.path %>'><%= item.title %></a></h4>
<h4><%= i+1 %> <a href='<%= item.path %>'><%= item.title %></a></h4>
<ul>
<% item.children.each_with_index do |child, ii| %>
<li class="clear"><%= "#{i+1}-#{ii+1}" %><a href='<%= child.path %>'><%= child.title %></a></span></li>
<li class="clear"><%= "#{i+1}-#{ii+1}" %> <a href='<%= child.path %>'><%= child.title %></a></span></li>
<% end if item.children %>
</ul>
</div>