diff options
-rw-r--r-- | app/views/wiki/_sidebar.html.erb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/wiki/_sidebar.html.erb b/app/views/wiki/_sidebar.html.erb index b4034d88b..7208376dc 100644 --- a/app/views/wiki/_sidebar.html.erb +++ b/app/views/wiki/_sidebar.html.erb @@ -3,7 +3,10 @@ <% end -%> <h3><%= l(:label_wiki) %></h3> - -<%= link_to l(:field_start_page), {:action => 'show', :id => nil} %><br /> -<%= link_to l(:label_index_by_title), {:action => 'index'} %><br /> -<%= link_to l(:label_index_by_date), {:controller => 'wiki', :project_id => @project, :action => 'date_index'} %><br /> +<ul> + <li><%= link_to(l(:field_start_page), {:action => 'show', :id => nil}) %></li> + <li><%= link_to(l(:label_index_by_title), {:action => 'index'}) %></li> + <li><%= link_to(l(:label_index_by_date), + {:controller => 'wiki', :project_id => @project, + :action => 'date_index'}) %></li> +</ul> |