@@ -1,40 +1,40 | |||
|
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 | 24 | <%= textilizable project.short_description, :project => project %> |
|
25 | 25 | </li> |
|
26 | 26 | <% end %> |
|
27 | 27 | <% @project = nil %> |
|
28 | 28 | </ul> |
|
29 | 29 | </div> |
|
30 | 30 | <% end %> |
|
31 | 31 | <%= call_hook(:view_welcome_index_right, :projects => @projects) %> |
|
32 |
</div> |
|
|
32 | </div> | |
|
33 | 33 | |
|
34 | 34 | <% content_for :header_tags do %> |
|
35 | 35 | <%= stylesheet_link_tag 'scm' %> |
|
36 | 36 | <%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'}, |
|
37 | 37 | :title => "#{Setting.app_title}: #{l(:label_news_latest)}") %> |
|
38 | 38 | <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'}, |
|
39 | 39 | :title => "#{Setting.app_title}: #{l(:label_activity)}") %> |
|
40 | 40 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now