diff --git a/Custom_Templates/customer_templates/DataSnipper/_header.html.liquid b/Custom_Templates/customer_templates/DataSnipper/_header.html.liquid
index 330d513b..4f330bbd 100644
--- a/Custom_Templates/customer_templates/DataSnipper/_header.html.liquid
+++ b/Custom_Templates/customer_templates/DataSnipper/_header.html.liquid
@@ -7,8 +7,8 @@
document.title = `${defaultPageTitle} | Learning Paths`
} else if (window.location.pathname == "/app/training_events") {
document.title = `${defaultPageTitle} | Training Events`
- } else if (window.location.pathname == "/app/upcoming-trainings") {
- document.title = `${defaultPageTitle} | Upcoming Trainings`
+ //} else if (window.location.pathname == "/app/upcoming-trainings") {
+ // document.title = `${defaultPageTitle} | Upcoming Trainings`
}
@@ -50,15 +50,20 @@
{% endif %} {% endcomment %}
- {% endunless %}
+ {% comment %} {% endunless %} {% endcomment %}
{% endfor %}
+ {% comment %}
{% for website_navigation in navigations.header_navigations_external %}
- {% endfor %}
+ {% endfor %}
+ {% endcomment %}
@@ -255,4 +263,4 @@
padding-right: 0;
}
}
-
\ No newline at end of file
+
diff --git a/Custom_Templates/customer_templates/DataSnipper/catalog.html.liquid b/Custom_Templates/customer_templates/DataSnipper/catalog.html.liquid
index 6917a2c2..fa7f0e38 100644
--- a/Custom_Templates/customer_templates/DataSnipper/catalog.html.liquid
+++ b/Custom_Templates/customer_templates/DataSnipper/catalog.html.liquid
@@ -1,6 +1,29 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+
+ Available Courses
+
+ {% if courses.in_catalog.any? %}
+
+ {% for course in courses.in_catalog %}
+ {% unless course.enrolled? %}
+
+ {% include "cards_course" with course %}
+
+ {% endunless %}
+ {% endfor %}
+
+ {% else %}
+ {% capture message %}
+ {% t shared.zero_state.courses.catalog
+ , key: current_school.course_vocabulary %}
+ {% endcapture %}
+ {% include "courses_zero_state", message: message %}
+ {% endif %}
+
+
+ {% comment %}