Files
Gainsight/Custom_Templates/customer_templates/Gusto/advising.html.liquid
2022-11-11 21:54:43 -05:00

27 lines
520 B
Plaintext

{% include "header" %}
<div>
{% if courses.enrolled.any? %}
<div class="row row-with-thumbnails">
{% for course in courses.enrolled %}
{% if course.properties.content == "Advising" %}
<div class="col-xs-12 col-sm-6 col-lg-4">
{% include "cards_course" with course %}
</div>
{% endif %}
{% endfor %}
</div>
{% endif %}
</div>
{% include "footer" %}
<style>
.col-xs-12.col-sm-6.col-lg-4 {
padding-left: 50px;
padding-right: 50px;
}
</style>