Project overview page
This commit is contained in:
parent
01b8494f18
commit
0e6b0d7e43
8 changed files with 80 additions and 1 deletions
25
content/projects/index.html
Normal file
25
content/projects/index.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
-----
|
||||
title: Projekte
|
||||
kind: page
|
||||
-----
|
||||
<%
|
||||
prj = projects_by_state
|
||||
%>
|
||||
<% if prj.has_key?('active') %>
|
||||
<h1>Aktive Projekte</h1>
|
||||
<div class="itemlist">
|
||||
<%= render 'project_list', :projects => prj['active'], :extended => true %>
|
||||
</div>
|
||||
<% end %>
|
||||
<% if prj.has_key?('completed') %>
|
||||
<h1>Abgeschlossene Projekte</h1>
|
||||
<div class="itemlist">
|
||||
<%= render 'project_list', :projects => prj['completed'], :extended => true %>
|
||||
</div>
|
||||
<% end %>
|
||||
<% if prj.has_key?('stalled') %>
|
||||
<h1>Ruhende Projekte</h1>
|
||||
<div class="itemlist">
|
||||
<%= render 'project_list', :projects => prj['stalled'], :extended => true %>
|
||||
</div>
|
||||
<% end %>
|
||||
Loading…
Add table
Add a link
Reference in a new issue