view app/views/welcome/index.rhtml @ 871:d6c20f61a130 feature_128

Close obsolete branch feature_128
author Chris Cannam
date Sat, 02 Apr 2011 12:22:46 +0100
parents 4188c6eaadf7
children dcfde3922ec2
line wrap: on
line source
<% if not Setting.notifications_text.empty? %>
  <div class="notifications flash error">
    <%= textilizable Setting.notifications_text %>
  </div>
<% end %>

<h2><%= l(:label_home_heading) %></h2>

<div class="splitcontentleft">
  <%= textilizable Setting.welcome_text %>
  
  <%= call_hook(:view_welcome_index_left, :projects => @projects) %>
</div>

<div class="splitcontentright">
  <% if @news.any? %>
  <div class="news box">
	<h3><%=l(:label_news_latest)%></h3>
		<%= render :partial => 'news/news', :collection => @news %>
		<%= link_to l(:label_news_view_all), :controller => 'news' %>
  </div>
  <% end %>
    <% if @projects.any? %>
	<div class="projects box">
	<h3><%=l(:label_project_latest)%></h3>
		<ul>
		<% for project in @projects %>
		  <% @project = project %>
			<li class="latest">
			<span class="title"><%= link_to_project project %></span>
			<span class="time"><%= format_time(project.created_on)%></span>
			<%= render_project_short_description project %>
			</li>
		<% end %>
    <% @project = nil %>
		</ul>
	</div>
	<% end %>
    <%= call_hook(:view_welcome_index_right, :projects => @projects) %>
</div>	

<% content_for :header_tags do %>
<%= 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 => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
                                   :title => "#{Setting.app_title}: #{l(:label_activity)}") %>
<% end %>