Gusto Changes

This commit is contained in:
Norm Rasmussen
2022-03-24 17:56:57 -04:00
parent a084e62d50
commit b7ddc861c5
4 changed files with 34 additions and 7 deletions

View File

@ -5,7 +5,7 @@
<div class="row row-with-thumbnails"> <div class="row row-with-thumbnails">
{% for course in courses.enrolled %} {% for course in courses.enrolled %}
{% if course.properties.content == "Advising" %} {% if course.properties.content == "Advising" %}
<div class="col-xs-12 col-sm-6 col-lg-4 np-stretch-content"> <div class="col-xs-12 col-sm-6 col-lg-4">
{% include "cards_course" with course %} {% include "cards_course" with course %}
</div> </div>
{% endif %} {% endif %}
@ -15,3 +15,12 @@
</div> </div>
{% include "footer" %} {% include "footer" %}
<style>
.col-xs-12.col-sm-6.col-lg-4 {
padding-left: 50px;
padding-right: 50px;
}
</style>

View File

@ -1,6 +1,6 @@
{% include "header" %} {% include "header" %}
<div class="np-learning-paths-resources"> <div style="margin:auto;" class="col-xs-12 col-sm-6">
{% if learning_paths.available.any? %} {% if learning_paths.available.any? %}
{% for learning_path in learning_paths.available %} {% for learning_path in learning_paths.available %}
{% if learning_path.name == "Gusto Payroll Certification" %} {% if learning_path.name == "Gusto Payroll Certification" %}
@ -17,7 +17,7 @@
<div class="row row-with-thumbnails"> <div class="row row-with-thumbnails">
{% for course in courses.enrolled %} {% for course in courses.enrolled %}
{% if course.properties.content == "Bookkeeping_Accounting" %} {% if course.properties.content == "Bookkeeping_Accounting" %}
<div class="col-xs-12 col-sm-6 col-lg-4 np-stretch-content"> <div class="col-xs-12 col-sm-6 col-lg-4">
{% include "cards_course" with course %} {% include "cards_course" with course %}
</div> </div>
{% endif %} {% endif %}
@ -27,3 +27,12 @@
</div> </div>
{% include "footer" %} {% include "footer" %}
<style>
.col-xs-12.col-sm6.col-lg-4 {
padding-left: 50px;
padding-right: 50px;
}
</style>

View File

@ -5,7 +5,7 @@
<div class="row row-with-thumbnails"> <div class="row row-with-thumbnails">
{% for course in courses.enrolled %} {% for course in courses.enrolled %}
{% if course.properties.content == "Running your accounting firm" %} {% if course.properties.content == "Running your accounting firm" %}
<div class="col-xs-12 col-sm-6 col-lg-4 np-stretch-content"> <div class="col-xs-12 col-sm-6 col-lg-4">
{% include "cards_course" with course %} {% include "cards_course" with course %}
</div> </div>
{% endif %} {% endif %}
@ -15,3 +15,12 @@
</div> </div>
{% include "footer" %} {% include "footer" %}
<style>
.col-xs-12.col-sm-6.col-lg-4 {
padding-left: 50px;
padding-right: 50px;
}
</style>