diff --git a/NP_Custom_Templates/customer_templates/Gusto/_custom_pages_section.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/_custom_pages_section.html.liquid new file mode 100644 index 00000000..c07ea239 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Gusto/_custom_pages_section.html.liquid @@ -0,0 +1,72 @@ +
+
+

+ Bookkeeping & Accounting +

+ + + +
+
+

+ Advising +

+ + + +
+
+

+ Running your Accounting Firm +

+ + + +
+
+ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Gusto/_gusto_pro.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/_gusto_pro.html.liquid index 845c08f8..1d9a81c1 100644 --- a/NP_Custom_Templates/customer_templates/Gusto/_gusto_pro.html.liquid +++ b/NP_Custom_Templates/customer_templates/Gusto/_gusto_pro.html.liquid @@ -4,10 +4,10 @@
-
Gusto Pro
-
Advising clients is easy with Gusto’s modern dashboard.
-
Gusto Pro offers powerful tools for accountants so you can work faster, more accurately, and track your clients’ needs all in one place.
- +
Gusto Academy
+
Welcome to Gusto Academy!
+
Your home for tech-focused professional development. Build your foundation through getting Certified, then earn badges by taking deep dives into advanced topics.
+
@@ -22,12 +22,14 @@
\ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Gusto/_start_messages.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/_start_messages.html.liquid new file mode 100644 index 00000000..7579dddb --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Gusto/_start_messages.html.liquid @@ -0,0 +1,52 @@ +
+
Just getting started with Gusto?
+
Get up to speed here.
+ Get started +
+ +
+
Choose your Focus Area, get certified and complete advanced study through Electives.
+
+ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Gusto/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/_sub_navigation.html.liquid new file mode 100644 index 00000000..cc851e6f --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Gusto/_sub_navigation.html.liquid @@ -0,0 +1,24 @@ + + + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Gusto/advising.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/advising.html.liquid new file mode 100644 index 00000000..2826434a --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Gusto/advising.html.liquid @@ -0,0 +1,17 @@ +{% include "header" %} + +
+ {% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} + {% if course.properties.content == "Advising" %} +
+ {% include "cards_course" with course %} +
+ {% endif %} + {% endfor %} +
+ {% endif %} +
+ +{% include "footer" %} \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Gusto/bookkeeping-accounting.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/bookkeeping-accounting.html.liquid new file mode 100644 index 00000000..a1463a6e --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Gusto/bookkeeping-accounting.html.liquid @@ -0,0 +1,29 @@ +{% include "header" %} + +
+ {% if learning_paths.available.any? %} + {% for learning_path in learning_paths.available %} + {% if learning_path.name == "Gusto Payroll Certification" %} + {% include "cards_learning_path" with learning_path %} + {% elsif learning_path.name == "Elective: Benefits 101" or learning_path.name == "Elective: HR 101"%} + {% include "cards_learning_path" with learning_path %} + {% endif %} + {% endfor %} + {% endif %} +
+ +
+ {% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} + {% if course.properties.content == "Bookkeeping & Accounting" %} +
+ {% include "cards_course" with course %} +
+ {% endif %} + {% endfor %} +
+ {% endif %} +
+ +{% include "footer" %} \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Gusto/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/dashboard.html.liquid index fbdf2f0c..7f1ca987 100644 --- a/NP_Custom_Templates/customer_templates/Gusto/dashboard.html.liquid +++ b/NP_Custom_Templates/customer_templates/Gusto/dashboard.html.liquid @@ -1,9 +1,14 @@ {% include "header" %} +{% include "sub_navigation" %} + {% include "gusto_pro" %} + +{% include "start_messages" %} + +{% include "custom_pages_section" %} {% include "personalized" %} {% include "conversations" %} -{% include "tour" %} {% include "advisory" %} {% include "courses_index", class: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %} diff --git a/NP_Custom_Templates/customer_templates/Gusto/running-your-firm.html.liquid b/NP_Custom_Templates/customer_templates/Gusto/running-your-firm.html.liquid new file mode 100644 index 00000000..87234326 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Gusto/running-your-firm.html.liquid @@ -0,0 +1,17 @@ +{% include "header" %} + +
+ {% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} + {% if course.properties.content == "Running your accounting firm" %} +
+ {% include "cards_course" with course %} +
+ {% endif %} + {% endfor %} +
+ {% endif %} +
+ +{% include "footer" %} \ No newline at end of file