58f8a23d58
* "header_tags" block added to allow inclusion of page specific tags in the html header (stylesheets, javascripts, feeds...) git-svn-id: http://redmine.rubyforge.org/svn/trunk@121 e93f8b46-1217-0410-a6f0-8f06a7374b81
27 lines
804 B
Plaintext
27 lines
804 B
Plaintext
<h2><%= $RDM_WELCOME_TITLE || l(:label_home) %></h2>
|
|
|
|
<div class="splitcontentleft">
|
|
<% if $RDM_WELCOME_TEXT %><p><%= $RDM_WELCOME_TEXT %></p><br /><% end %>
|
|
<div class="box">
|
|
<h3><%=l(:label_news_latest)%></h3>
|
|
<%= render :partial => 'news/news', :collection => @news %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="splitcontentright">
|
|
<div class="box">
|
|
<h3><%=l(:label_project_latest)%></h3>
|
|
<ul>
|
|
<% for project in @projects %>
|
|
<li>
|
|
<%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)<br />
|
|
<%=h project.description %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= auto_discovery_link_tag(:rss, {:controller => 'feeds' , :action => 'news' }) %>
|
|
<% end %> |