Contents
    {% assign activity_count = 0 %}{% assign num_of_sections = course.sections | size %}{% assign num_of_activities_in_first_section = course.sections.first.activities | size %}{% for section in course.sections %}
  1. {% if num_of_activities_in_first_section > 1 or num_of_sections > 1 %}
    {{ section.name }}
    {% endif %}
      {% for activity in section.activities %}{% assign activity_count = activity_count | plus: 1 %}
    1. {% if activity.completed? %}{% if activity.locked? %}{{ activity.title }}{% else %}{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %}{% endif %}
      {% else %}
      {{ activity_count }}
      {% if activity.locked? %} {{ activity.title }}{% else %}{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %}{% endif %}
      {% endif %}
    2. {% endfor %}
  2. {% endfor %}