view app/views/welcome/index.rhtml @ 847:83740cd6705e cannam

Merge from branch "luisf"
author Chris Cannam
date Wed, 01 Feb 2012 14:34:18 +0000
parents 851510f1b535
children
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 @site_news.any? %>
  <div class="news box">
	<h3><%=l(:label_news_site_latest)%></h3>
	<%= render :partial => 'news/news', :locals => { :project => @site_project }, :collection => @site_news %>
	
	<%= link_to l(:label_news_more), { :controller => 'projects', :action => @site_project.identifier, :id => '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>
	<%= link_to l(:label_projects_more), :controller => 'projects' %>
	</div>
	<% end %>
    <%= call_hook(:view_welcome_index_right, :projects => @projects) %>
</div>	

<% content_for :header_tags do %>
<%= stylesheet_link_tag 'scm' %>
<%= 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 %>