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? %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<div class="box">
|
2006-07-29 19:54:22 +00:00
|
|
|
<h3><%=l(:label_news_latest)%></h3>
|
2007-03-12 17:59:02 +00:00
|
|
|
<%= render :partial => 'news/news', :collection => @news %>
|
2007-11-23 18:27:26 +00:00
|
|
|
<%= link_to l(:label_news_view_all), :controller => 'news' %>
|
2007-11-05 22:22:51 +00:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2007-03-12 17:59:02 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
|
|
|
<div class="box">
|
|
|
|
<h3 class="icon22 icon22-projects"><%=l(:label_project_latest)%></h3>
|
2006-06-28 18:11:03 +00:00
|
|
|
<ul>
|
2007-03-12 17:59:02 +00:00
|
|
|
<% for project in @projects %>
|
|
|
|
<li>
|
2007-09-22 13:17:49 +00:00
|
|
|
<%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)
|
2008-01-20 18:37:51 +00:00
|
|
|
<%= textilizable project.short_description, :project => project %>
|
2007-03-12 17:59:02 +00:00
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% 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)}") %>
|
|
|
|
<%= auto_discovery_link_tag(:atom, {:controller => 'projects', :action => 'activity', :key => User.current.rss_key, :format => 'atom'},
|
|
|
|
:title => "#{Setting.app_title}: #{l(:label_activity)}") %>
|
2007-08-16 11:01:00 +00:00
|
|
|
<% end %>
|