summaryrefslogtreecommitdiff
path: root/app/views/content/_front_page_calendar.html.erb
blob: dc4ba8840fec0358839bcfea89ec96119f018ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div id="frontpage_calendar">
  <h2><%= t(".title") %></h2>
  <ul class="teasertext">
    <% occurrences.each do |occurrence| %>
      <li>
        <div><%= l occurrence.start_time.to_date, :format => :default %></div>
        <%= link_to_path sanitize( occurrence.node.head.title ), occurrence.node.unique_name %>
      </li>
    <% end %>
  </ul>
</div>