27 lines
520 B
Plaintext
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>
|