%= style %>
<%= I18n.t("Syllabus") %>
<% content.group_by {|item| item['due_at']}.each do |due_date, item_group| %>
<%= due_date.present? ? I18n.t("Due %{time}",{time: friendly_date(due_date)}) : "No due date" %>
<% item_group.each do |item| %>
-
<%= link_to_content_item(item) %>
<% end %>
<% end %>
<%= I18n.t("Back to Table of Contents") %>