diff --git a/cms/templates/partials/course-carousel.html b/cms/templates/partials/course-carousel.html index 41c0f0a862..f40bb259c4 100644 --- a/cms/templates/partials/course-carousel.html +++ b/cms/templates/partials/course-carousel.html @@ -1,5 +1,5 @@ {% load static wagtailcore_tags wagtailimages_tags %} -
+

{{ page.heading }}

diff --git a/cms/templates/partials/courseware-carousel-base.html b/cms/templates/partials/courseware-carousel-base.html index 35fa5d073d..c36a9b2010 100644 --- a/cms/templates/partials/courseware-carousel-base.html +++ b/cms/templates/partials/courseware-carousel-base.html @@ -5,7 +5,7 @@ {% if courseware_page.thumbnail_image %} {{ courseware_page.title }} {% else %} - {{ courseware_page.title }} + {{ courseware_page.title }} {% endif %} {{ courseware_page.title }}

{{ courseware_page.subhead }}

diff --git a/cms/templates/partials/faculty-carousel.html b/cms/templates/partials/faculty-carousel.html index 85fa6c469d..352fd05a57 100644 --- a/cms/templates/partials/faculty-carousel.html +++ b/cms/templates/partials/faculty-carousel.html @@ -1,5 +1,6 @@ {% load wagtailcore_tags image_version_url %} -
+ +

{{ page.heading }}

@@ -11,7 +12,7 @@

{{ page.subhead }}

{% for member in page.members %}
- {{ member.value.name }} + {{ member.value.name }}

{{ member.value.name }}

{{ member.value.description|richtext }} diff --git a/cms/templates/partials/learning-techniques.html b/cms/templates/partials/learning-techniques.html index 1cb0efd235..9b060ee242 100644 --- a/cms/templates/partials/learning-techniques.html +++ b/cms/templates/partials/learning-techniques.html @@ -5,7 +5,7 @@

{{ page.title }}

{% for technique in page.technique_items %}
  • - Learning technique + Learning technique

    {{ technique.value.heading }}

    {{ technique.value.sub_heading }}

    diff --git a/cms/templates/partials/testimonial-carousel.html b/cms/templates/partials/testimonial-carousel.html index d2b7d75646..d16c8def79 100644 --- a/cms/templates/partials/testimonial-carousel.html +++ b/cms/templates/partials/testimonial-carousel.html @@ -1,5 +1,5 @@ {% load image_version_url wagtailcore_tags %} -
    +

    {{ page.heading }}

    @@ -12,7 +12,7 @@

    {{ page.subhead }}

    {% if testimonial.value.image %} - {{ testimonial.value.name }} + {{ testimonial.value.name }} {% endif %}

    {{ testimonial.value.name }}, {{ testimonial.value.title }}

    {{ testimonial.value.quote|truncatechars:150 }}

    @@ -36,7 +36,7 @@

    {{ testimonial.value.name }}, {{ testimonial.value.title }}

    - Testimonial image + Testimonial image
    diff --git a/cms/templates/product_page.html b/cms/templates/product_page.html index 5b29c63959..0d8f36f2af 100644 --- a/cms/templates/product_page.html +++ b/cms/templates/product_page.html @@ -110,4 +110,24 @@ {% if faqs %} {% include "partials/faqs.html" with faqs=faqs %} {% endif %} {% if propel_career %} {% include "partials/text-section.html" with page=propel_career %} {% endif %}
    + + {% endblock %} diff --git a/static/scss/detail/courses-in-program.scss b/static/scss/detail/courses-in-program.scss index f2c20bf4c3..52f5d5db2c 100644 --- a/static/scss/detail/courses-in-program.scss +++ b/static/scss/detail/courses-in-program.scss @@ -2,7 +2,7 @@ .course-in-program { width: 100%; padding: 100px 0 50px; - background: white url("#{$static-path}/images/course-carousel-bg.jpg") no-repeat 50% 50%; + background: white no-repeat 50% 50%; min-height: 400px; overflow: hidden; position: relative; @@ -49,6 +49,10 @@ } } +.course-in-program.img { + background-image: url("#{$static-path}/images/course-carousel-bg.jpg"); +} + .course-slider { position: relative; margin: 0 -15px 50px; diff --git a/static/scss/detail/faculty.scss b/static/scss/detail/faculty.scss index 97605f2fb9..008136e64b 100644 --- a/static/scss/detail/faculty.scss +++ b/static/scss/detail/faculty.scss @@ -2,7 +2,7 @@ .faculty-block { width: 100%; padding: 100px 0 50px; - background: black url("#{$static-path}/images/faculty-bg.jpg") no-repeat 50% 0; + background: black no-repeat 50% 0; min-height: 400px; overflow: hidden; position: relative; @@ -29,6 +29,11 @@ } } +.faculty-block.img{ + background-image: url("#{$static-path}/images/faculty-bg.jpg"); + } + + .faculty-slider { position: relative; margin: 0 -15px; diff --git a/static/scss/detail/testimonial-carousel.scss b/static/scss/detail/testimonial-carousel.scss index 1fc1c815f6..7b8a5e1bf9 100644 --- a/static/scss/detail/testimonial-carousel.scss +++ b/static/scss/detail/testimonial-carousel.scss @@ -1,7 +1,7 @@ // sass-lint:disable mixins-before-declarations .learners-block { padding: 100px 0 50px; - background: white url("#{$static-path}/images/testimonial-carousel-bg.jpg") no-repeat 50% 0; + background: white no-repeat 50% 0; min-height: 400px; overflow: hidden; position: relative; @@ -41,6 +41,10 @@ } } +.learners-block.img{ + background-image: url("#{$static-path}/images/testimonial-carousel-bg.jpg"); +} + .learners-slider { position: relative; margin: 0 -15px;