##// END OF EJS Templates
Fixed that there's no space after lists in project description (#2573)....
Jean-Philippe Lang -
r13172:8c6c38a006ee
parent child
Show More
@@ -1,39 +1,41
1 1 <h2><%= l(:label_home) %></h2>
2 2
3 3 <div class="splitcontentleft">
4 4 <%= textilizable Setting.welcome_text %>
5 5 <% if @news.any? %>
6 6 <div class="news box">
7 7 <h3><%=l(:label_news_latest)%></h3>
8 8 <%= render :partial => 'news/news', :collection => @news %>
9 9 <%= link_to l(:label_news_view_all), :controller => 'news' %>
10 10 </div>
11 11 <% end %>
12 12 <%= call_hook(:view_welcome_index_left, :projects => @projects) %>
13 13 </div>
14 14
15 15 <div class="splitcontentright">
16 16 <% if @projects.any? %>
17 17 <div class="projects box">
18 18 <h3><%=l(:label_project_latest)%></h3>
19 19 <ul>
20 20 <% for project in @projects %>
21 21 <% @project = project %>
22 22 <li>
23 23 <%= link_to_project project %> (<%= format_time(project.created_on) %>)
24 <%= textilizable project.short_description, :project => project %>
24 <div class="wiki">
25 <%= textilizable project.short_description, :project => project %>
26 </div>
25 27 </li>
26 28 <% end %>
27 29 <% @project = nil %>
28 30 </ul>
29 31 </div>
30 32 <% end %>
31 33 <%= call_hook(:view_welcome_index_right, :projects => @projects) %>
32 34 </div>
33 35
34 36 <% content_for :header_tags do %>
35 37 <%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
36 38 :title => "#{Setting.app_title}: #{l(:label_news_latest)}") %>
37 39 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
38 40 :title => "#{Setting.app_title}: #{l(:label_activity)}") %>
39 41 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now