17 lines
585 B
Plaintext
17 lines
585 B
Plaintext
<div class="np-course-outline">
|
|
<div class="np-text-title np-course-outline-title">
|
|
{% t .header, key: current_school.course_vocabulary %}
|
|
</div>
|
|
<div class="np-course-outline-content">
|
|
<ol class="np-course-outline-content-section">
|
|
{% for section in course.sections %}
|
|
<li class="np-course-outline-content-section-list">
|
|
<div class="np-course-outline-content-section-name np-text-title-bold np-text-title-bold" style='font-weight: 600;'>
|
|
{{ section.name }}
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
</div>
|