added default templates
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.._footer.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.._footer.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.._head.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.._head.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.._header.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.._header.html 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.._messages.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.._messages.html 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.account.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.account.html 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.catalog.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.catalog.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.course.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.course.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.courses.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.courses.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.dashboard.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.dashboard.html 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.homepage.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.homepage.html 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.login.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.login.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.master.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.master.html 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
BIN
NP_Custom_Templates/templates/.search.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.search.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.sign_up.html 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.sign_up.html 2.liquid.icloud
Normal file
Binary file not shown.
BIN
NP_Custom_Templates/templates/.styles.css 2.liquid.icloud
Normal file
BIN
NP_Custom_Templates/templates/.styles.css 2.liquid.icloud
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
40
NP_Custom_Templates/templates/_course_outline.html 2.liquid
Normal file
40
NP_Custom_Templates/templates/_course_outline.html 2.liquid
Normal file
@ -0,0 +1,40 @@
|
||||
<div class="np-course-outline">
|
||||
<div class="np-text-title np-course-outline-title">
|
||||
Content
|
||||
</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">
|
||||
{{ section.name }}
|
||||
</div>
|
||||
<ol class="np-course-outline-content-activity">
|
||||
{% for activity in section.activities %}
|
||||
|
||||
<li class="np-course-outline-content-activity-list">
|
||||
{% if activity.completed? %}
|
||||
<i class="fas fa-circle np-course-outline-content-activity-icon np-button-color"></i>
|
||||
{% if activity.locked? %}
|
||||
{% include "course_activity_locked" %}
|
||||
{% else %}
|
||||
{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %}
|
||||
{% endif %}
|
||||
<div class="np-button-background-color np-course-outline-content-activity-list-bar"></div>
|
||||
{% else %}
|
||||
<i class="far fa-circle np-course-outline-content-activity-icon"></i>
|
||||
{% if activity.locked? %}
|
||||
{% include "course_activity_locked" %}
|
||||
{% else %}
|
||||
{% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %}
|
||||
{% endif %}
|
||||
<div class="np-course-outline-content-activity-list-bar"></div>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user