{% endif %}
@@ -40,4 +40,4 @@
\ No newline at end of file
+
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_course.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_course.html.liquid
new file mode 100644
index 00000000..0b1b72ef
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_course.html.liquid
@@ -0,0 +1,34 @@
+
+
+ {% if course.ribbon %}
+
+ {{ course.ribbon }}
+
+ {% endif %}
+
+
+
+ {{ course.name }}
+
+
+ {{ course.instructor_names }}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_learning_path_carousel.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_learning_path_carousel.html.liquid
new file mode 100644
index 00000000..918b796e
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_learning_path_carousel.html.liquid
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_special_course.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_special_course.html.liquid
new file mode 100644
index 00000000..3c321665
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_cards_special_course.html.liquid
@@ -0,0 +1,32 @@
+
+ {% if course.ribbon %}
+
+ {{ course.ribbon }}
+
+ {% endif %}
+
+
+
+ {{ course.name }}
+
+
+ {{ course.instructor_names }}
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_catalog_carousel.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_catalog_carousel.html.liquid
new file mode 100644
index 00000000..715e7f43
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_catalog_carousel.html.liquid
@@ -0,0 +1,101 @@
+
+
+
+ {% for course in courses.in_catalog %}
+ {% assign categories_name = course.categories | map: 'name'| join: ' ' %}
+ {% if categories_name contains category_name %}
+ {% assign is_swift_features = true %}
+ {% include "cards_course" with course %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+ {% endif %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_catalog_special_carousel.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_catalog_special_carousel.html.liquid
new file mode 100644
index 00000000..d8837575
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_catalog_special_carousel.html.liquid
@@ -0,0 +1,92 @@
+
+ {% include "cards_special_course" with course %}
+
+ {% endif %}
+ {% endfor %}
+
+ {% endif %}
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_courses_catalog.html.liquid
new file mode 100644
index 00000000..309ca7a9
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_courses_catalog.html.liquid
@@ -0,0 +1,9 @@
+{% if courses.in_catalog.any? %}
+
+ {% for course in courses.in_catalog %}
+
+ {% include "cards_course" with course %}
+
+ {% endfor %}
+
+{% endif %}
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_dashboard_carousel.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_dashboard_carousel.html.liquid
new file mode 100644
index 00000000..56e39f3c
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_dashboard_carousel.html.liquid
@@ -0,0 +1,144 @@
+
+
+
+
My Courses
+
+
+
+
+ Assigned
+
+
+ In Progress
+
+
+ Completed
+
+
+
+
+
+ Assigned
+
+
+ In Progress
+
+
+ Completed
+
+
+
+
+
+
+
+ {% if courses.enrolled.any? %}
+
+ {% for course in courses.enrolled %}
+ {% include "cards_course" with course %}
+ {% endfor %}
+
+ {% endif %}
+
+
+
+
+
+ {% assign is_progress = false %}
+
+ {% for course in courses.enrolled %}
+ {% if course.started? and course.completed? == false%}
+ {% assign is_progress = true %}
+ {% include "cards_course" with course %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
+
+
+ {% assign is_progress = false %}
+
+ {% for course in courses.enrolled %}
+ {% if course.completed? %}
+ {% assign is_progress = true %}
+ {% include "cards_course" with course %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_footer.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_footer.html.liquid
new file mode 100644
index 00000000..c58235a5
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_footer.html.liquid
@@ -0,0 +1,81 @@
+
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_head.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_head.html.liquid
new file mode 100644
index 00000000..3c11e2f5
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_head.html.liquid
@@ -0,0 +1,18 @@
+{% styles default %}
+{% styles colors %}
+{% styles custom %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_learning_paths_carousel.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_learning_paths_carousel.html.liquid
new file mode 100644
index 00000000..79ba5982
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_learning_paths_carousel.html.liquid
@@ -0,0 +1,49 @@
+
+
+ {% if learning_paths.available.any?%}
+
+ {% for learning_path in learning_paths.available %}
+ {% include "cards_learning_path_carousel" %}
+ {% endfor %}
+
+ {% endif %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/_training_events_dashboard.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/_training_events_dashboard.html.liquid
new file mode 100644
index 00000000..505b2fb4
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/_training_events_dashboard.html.liquid
@@ -0,0 +1,5 @@
+
+ {% for training_event in training_events.enrolled %}
+ {% include "cards_training_event" with training_event %}
+ {% endfor %}
+
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/amedisys.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/amedisys.html.liquid
new file mode 100644
index 00000000..4939c9ba
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/amedisys.html.liquid
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/catalog.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/catalog.html.liquid
new file mode 100644
index 00000000..a2bcff72
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/catalog.html.liquid
@@ -0,0 +1,222 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+{% include "sub_navigation" %}
+
+
+
+
+
+ Swift Skin and Wound Training Resources
+
+
+ Explore key courses and content to learn the basic features within Swift Skin and Wound. Have a problem or a question? Explore the Swift Resources for a quick answer.
+
+
+ {%
+ include 'catalog_special_carousel',
+ category_name: "Full Certificate Onboarding",
+ class_name: "full-cert-onboarding"
+ %}
+
+ {%
+ include 'catalog_special_carousel',
+ category_name: "Additional Resources",
+ class_name: "additional-resources"
+ %}
+
+ {%
+ include 'catalog_carousel',
+ heading: "Open Source Courses",
+ sub_heading: "Explore key features found in Swift Skin and Wound",
+ category_name: "Open Source Onboarding Content",
+ class_name: "open-source"
+ %}
+
+ {%
+ include 'catalog_carousel',
+ heading: "Key Swift Features Courses",
+ sub_heading: "Explore key features found in Swift Skin and Wound",
+ category_name: "Key Features",
+ class_name: "key-swift-features"
+ %}
+
+ {%
+ include 'catalog_carousel',
+ heading: "Single Course Onboarding",
+ sub_heading: "Looking for content that only includes iOS or Android? Explore the courses below.",
+ category_name: "Single Course Onboarding",
+ class_name: "single-course-onboarding"
+ %}
+
+
+
+{% include "footer" %}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/dashboard.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/dashboard.html.liquid
new file mode 100644
index 00000000..c4024323
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/dashboard.html.liquid
@@ -0,0 +1,99 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.enrolled %}
+{% include "sub_navigation" %}
+
+
+
+
+
+
+ Welcome {{current_person.first_name}},
+
+
+ This is your dashboard. Explore courses you have started and courses you have been assigned.
+
+
+
+
+
+
+ {% include 'dashboard_carousel' %}
+
+
+
+
My Learning Paths
+
+ {% include 'learning_paths_carousel' %}
+
+ {% if training_events.enrolled.any? %}
+
+
+
Events
+ {% include "training_events_dashboard" %}
+
+ {% endif %}
+
+
+
+{% include "footer" %}
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/feedback.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/feedback.html.liquid
new file mode 100644
index 00000000..283a1bcf
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/feedback.html.liquid
@@ -0,0 +1,16 @@
+
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.featured %}
+{% include "sub_navigation" %}
+
+
+
+
Feedback about Swift Academy
+
+
+
+{% include "footer" %}
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/homepage.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/homepage.html.liquid
new file mode 100644
index 00000000..814df626
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/homepage.html.liquid
@@ -0,0 +1,104 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.featured %}
+{% include "sub_navigation" %}
+
+
+ {% t .empty, key: current_school.course_vocabulary %}
+
+
+
+ {% endif %}
+
+
+
+
+ Learn more about the Swift Medical Team
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ How to Use Swift - Quick Video Walkthrough
+
+
+
+
+
+
+
+
+{% include "footer" %}
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/livetraining.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/livetraining.html.liquid
new file mode 100644
index 00000000..17608d07
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/livetraining.html.liquid
@@ -0,0 +1,75 @@
+
+ {% include "header" %}
+ {% include "course_version_outdated_alert", courses: courses.featured %}
+ {% include "sub_navigation" %}
+
+
+
+
Select your live course and complete to earn your Credential
+
+
+
+
+
+
+
+
+
+ Swift Ready - Live With Trainer Activities
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Swift Certified - Live With Trainer Activities
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% include "footer" %}
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/login.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/login.html.liquid
new file mode 100644
index 00000000..4eba8aa5
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/login.html.liquid
@@ -0,0 +1,62 @@
+
+
Within this module, you will learn about some of the key elements of Swift Skin and Wound and how to use these on an iOS device.
Key Elements explored in this course:
+
How to get started and login
+
Locating and identifying a patient chart
+
How to take wound images
+
Reviewing wound images
+
How to complete wound documentation
+
You will be able to walkthrough an example showing the key elements of the app and how to use them. While exploring the documentation use the Swift Skin and Wound application on your iOS device.
+
+
+ {% include "footer" %}
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical Sandbox/sales.html.liquid b/Custom_Templates/customer_templates/Swift Medical Sandbox/sales.html.liquid
new file mode 100644
index 00000000..7cfbbf1b
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical Sandbox/sales.html.liquid
@@ -0,0 +1,178 @@
+
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.featured %}
+{% include "sub_navigation" %}
+
+
+
+
Onboarding Courses for the Sales Team
+
+
+
+
+
+
+
+
+ Complete this course to learn the basics of capturing a wound in 30 Minutes!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Certification
+
+
+
+
+
+ Complete the Dashboard Swift Skin and Wound Onboarding to learn about how to use the dashboard with Swift Skin and Wound.
+
+
+
+
+
+
+
+
+
+
+
+
+
Additional courses to explore selected for the sales team
+
+
+
+
+
+
+
+ Certification
+
+
+
+
+
+ Swift Certified - Skin and Wound
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Swift Resource Center
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Full Wound Workflow in 5 Minutes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Looking for more content?
+
Explore the catalog for a full selection of courses that are available
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Swift Medical/catalog.html.liquid b/Custom_Templates/customer_templates/Swift Medical/catalog.html.liquid
new file mode 100644
index 00000000..9268f20b
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical/catalog.html.liquid
@@ -0,0 +1,233 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+{% include "sub_navigation" %}
+
+
+
+
+
+ Swift Skin and Wound Training Resources
+
+
+ Explore key courses and content to learn the basic features within Swift Skin and Wound. Have a problem or a question? Explore the Swift Resources for a quick answer.
+
+ {% for course in courses.in_catalog %}
+ {% assign categories_name = course.categories | map: 'name'| join: ' ' %}
+ {% if categories_name contains 'Resources' %}
+ {% assign is_resources = true %}
+ {% include "cards_course" with course %}
+ {% endif %}
+ {% endfor %}
+
+
+ {% endif %}
+
+
+
+ {%
+ include 'catalog_carousel',
+ heading: "Open Access Courses",
+ sub_heading: "Explore key features found in Swift Skin and Wound",
+ category_name: "open access",
+ class_name: "open-access"
+ %}
+
+ {%
+ include 'catalog_carousel',
+ heading: "Swift Features - Mini Courses",
+ sub_heading: "Explore key features found in Swift Skin and Wound",
+ category_name: "swift features",
+ class_name: "swift-features"
+ %}
+
+ {%
+ include 'catalog_carousel',
+ heading: "Device Specific Courses",
+ sub_heading: "Looking for content that only includes iOS or Android? Explore the courses below.",
+ category_name: "device specific",
+ class_name: "device-specific"
+ %}
+
+
+
+{% include "footer" %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical/dashboard.html.liquid b/Custom_Templates/customer_templates/Swift Medical/dashboard.html.liquid
new file mode 100644
index 00000000..c4024323
--- /dev/null
+++ b/Custom_Templates/customer_templates/Swift Medical/dashboard.html.liquid
@@ -0,0 +1,99 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.enrolled %}
+{% include "sub_navigation" %}
+
+
+
+
+
+
+ Welcome {{current_person.first_name}},
+
+
+ This is your dashboard. Explore courses you have started and courses you have been assigned.
+
+
+
+
+
+
+ {% include 'dashboard_carousel' %}
+
+
+
+
My Learning Paths
+
+ {% include 'learning_paths_carousel' %}
+
+ {% if training_events.enrolled.any? %}
+
+
+
Events
+ {% include "training_events_dashboard" %}
+
+ {% endif %}
+
+
+
+{% include "footer" %}
+
+
\ No newline at end of file
diff --git a/Custom_Templates/customer_templates/Swift Medical/homepage.html.liquid b/Custom_Templates/customer_templates/Swift Medical/homepage.html.liquid
index f0dd7219..46407ad7 100644
--- a/Custom_Templates/customer_templates/Swift Medical/homepage.html.liquid
+++ b/Custom_Templates/customer_templates/Swift Medical/homepage.html.liquid
@@ -2,8 +2,9 @@
{% include "course_version_outdated_alert", courses: courses.featured %}
{% include "sub_navigation" %}
-
Within this module, you will learn about some of the key elements of Swift Skin and Wound and how to use these on an iOS device.
Key Elements explored in this course:
+
How to get started and login
+
Locating and identifying a patient chart
+
How to take wound images
+
Reviewing wound images
+
How to complete wound documentation
+
You will be able to walkthrough an example showing the key elements of the app and how to use them. While exploring the documentation use the Swift Skin and Wound application on your iOS device.