Files
Gainsight/NP_Custom_Templates/customer_templates/Gusto/advising.html.liquid
Norm Rasmussen f68a34af39 Gusto
2022-03-22 12:13:36 -04:00

17 lines
440 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 np-stretch-content">
{% include "cards_course" with course %}
</div>
{% endif %}
{% endfor %}
</div>
{% endif %}
</div>
{% include "footer" %}