{% assign section_counter = 0 %}
{% for section in course.sections %}
{% assign section_counter = section_counter | plus: 1 %}
{% assign section_name_splitted = section.name | split: "|||" %}
{% assign section_name = section_name_splitted | slice: 0 %}
{% assign section_description = section_name_splitted | slice: 1 %}
{{ section_description }}
{% assign activities_counter = 0 %}
{% for activity in section.activities %}
{% assign activities_counter = activities_counter | plus: 1 %}
{{ activities_counter }}. {{ activity.title }}
{% case activity.type %}
{% when 'presentation' %}
{{ presentation_icon }}
{% when 'webpage' %}
{{ webpage_icon }}
{% when 'video' %}
{{ video_icon }}
{% when 'document' %}
{{ document_icon }}
{% when 'quiz' %}
{{ quiz_icon }}
{% when 'survey' %}
{{ survey_icon }}
{% when 'soundcloud' %}
{{ soundcloud_icon }}
{% when 'download' %}
{{ download_icon }}
{% endcase %}
{% endfor %}
{% endfor %}
{% unless current_person.signed_in? %}
{% endunless %}