index.rhtml
26 lines
| 751 B
| text/html+ruby
|
RhtmlLexer
|
r330 | <h2><%= l(:label_home) %></h2> | |
<div class="splitcontentleft"> | |||
<p><%= Setting.welcome_text %></p> | |||
<div class="box"> | |||
|
r12 | <h3><%=l(:label_news_latest)%></h3> | |
|
r330 | <%= render :partial => 'news/news', :collection => @news %> | |
</div> | |||
</div> | |||
<div class="splitcontentright"> | |||
<div class="box"> | |||
<h3 class="icon22 icon22-projects"><%=l(:label_project_latest)%></h3> | |||
|
r2 | <ul> | |
|
r330 | <% 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' }) %> | |||
|
r118 | <% end %> |