2009-03-06 18:27:40 +00:00
|
|
|
<% @title = "Home" %>
|
|
|
|
|
|
|
|
<div class="page-introduction">
|
2009-08-23 02:16:23 +00:00
|
|
|
<%= @index_page_content %>
|
2009-03-06 18:27:40 +00:00
|
|
|
</div> <!-- .section -->
|
|
|
|
|
|
|
|
<div class="section section-sections">
|
|
|
|
<div class="section-title">
|
|
|
|
<h3>Sections</h3>
|
|
|
|
</div> <!-- .section-title -->
|
|
|
|
|
|
|
|
<div class="section-content">
|
|
|
|
<ul class="section-list">
|
|
|
|
<% @root.sections.each do |section| %>
|
|
|
|
<li>
|
2009-03-07 21:45:22 +00:00
|
|
|
<h4>
|
|
|
|
<a href="<%= path_to_section(section) %>"><%= section.name %></a>
|
|
|
|
</h4>
|
|
|
|
<p><%= htmlize(section.short_description) %></p>
|
2009-03-06 18:27:40 +00:00
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div> <!-- .section-content -->
|
2009-09-15 23:27:35 +00:00
|
|
|
</div> <!-- .section -->
|