2007-03-12 17:59:02 +00:00
|
|
|
<h2><%= l(:label_home) %></h2>
|
|
|
|
|
|
|
|
<div class="splitcontentleft">
|
2007-08-17 11:32:58 +00:00
|
|
|
<%= textilizable Setting.welcome_text %>
|
2007-11-05 22:22:51 +00:00
|
|
|
<% if @news.any? %>
|
2009-12-17 18:52:28 +00:00
|
|
|
<div class="news box">
|
2011-09-17 08:03:56 +00:00
|
|
|
<h3><%=l(:label_news_latest)%></h3>
|
|
|
|
<%= render :partial => 'news/news', :collection => @news %>
|
|
|
|
<%= link_to l(:label_news_view_all), :controller => 'news' %>
|
2007-11-05 22:22:51 +00:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2009-04-24 21:25:10 +00:00
|
|
|
<%= call_hook(:view_welcome_index_left, :projects => @projects) %>
|
2007-03-12 17:59:02 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
2008-05-01 13:01:23 +00:00
|
|
|
<% if @projects.any? %>
|
2011-09-17 08:03:56 +00:00
|
|
|
<div class="projects box">
|
|
|
|
<h3><%=l(:label_project_latest)%></h3>
|
|
|
|
<ul>
|
|
|
|
<% for project in @projects %>
|
|
|
|
<% @project = project %>
|
|
|
|
<li>
|
|
|
|
<%= link_to_project project %> (<%= format_time(project.created_on) %>)
|
|
|
|
<%= textilizable project.short_description, :project => project %>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2010-06-30 03:32:18 +00:00
|
|
|
<% @project = nil %>
|
2011-09-17 08:03:56 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2009-04-24 21:25:10 +00:00
|
|
|
<%= call_hook(:view_welcome_index_right, :projects => @projects) %>
|
2011-09-17 12:05:14 +00:00
|
|
|
</div>
|
2007-03-12 17:59:02 +00:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
2008-03-11 19:33:38 +00:00
|
|
|
<%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
|
|
|
|
:title => "#{Setting.app_title}: #{l(:label_news_latest)}") %>
|
2010-08-27 14:05:54 +00:00
|
|
|
<%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
|
2008-03-11 19:33:38 +00:00
|
|
|
:title => "#{Setting.app_title}: #{l(:label_activity)}") %>
|
2007-08-16 11:01:00 +00:00
|
|
|
<% end %>
|