87 lines
2.2 KiB
Plaintext
87 lines
2.2 KiB
Plaintext
{% include "header" %}
|
|
{% include "course_version_outdated_alert", courses: courses.featured %}
|
|
<main class="np-main np-homepage">
|
|
{% include "homepage_hero_carousel" %}
|
|
{% comment %} {% include "sub_navigation" %} {% endcomment %}
|
|
<div class="np-subpage-container" id="featured">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-4 courses-left-small">
|
|
{% include "cards_categories", class: "col-xs-12 col-sm-6" %}
|
|
</div>
|
|
<div class="col-12 col-lg-8">
|
|
<div class="np-homepage-featured np-max-width">
|
|
<div class="np-homepage-featured-text">
|
|
<div class="np-homepage-headline">
|
|
{{ homepage.featured_courses_headline }}
|
|
</div>
|
|
<div class="np-homepage-subheadline" style='opacity: 50%'>
|
|
{{ homepage.featured_courses_subheadline }}
|
|
</div>
|
|
</div>
|
|
{% if courses.featured.any? %}
|
|
<div class="np-homepage-featured-courses row">
|
|
{% for course in courses.featured %}
|
|
<div class="col-xs-12 col-sm-8 col-md-12" style="margin:auto;">
|
|
{% include "cards_featured_course" with course %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="np-homepage-featured-empty">
|
|
<div class="np-zero-state-text">
|
|
{% t .empty, key: current_school.course_vocabulary %}
|
|
</div>
|
|
<img
|
|
class="np-zero-state-courses"
|
|
alt="{% t .empty, key: current_school.course_vocabulary %}"
|
|
/>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include "homepage_events" %}
|
|
|
|
{% include "section_faqs" %}
|
|
|
|
{% include "section_contact_us" %}
|
|
|
|
</main>
|
|
{% include "footer" %}
|
|
<script>
|
|
$(".np-sub-navigation-content-item-link:contains('Home')").parent().addClass("np-sub-navigation-content-item-active")
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.np-homepage .np-subpage-container {
|
|
padding: 0 22px 50px;
|
|
max-width: 1920px;
|
|
}
|
|
|
|
.np-homepage .np-subpage-container > .row {
|
|
margin:0;
|
|
}
|
|
|
|
.np-card-content {
|
|
background: #f4f4f4!important;
|
|
}
|
|
|
|
.np-card-content-title {
|
|
shadow: 0!important;
|
|
}
|
|
|
|
.courses-left-small {
|
|
padding-top: 190px;
|
|
}
|
|
|
|
@media (min-width:1170px) {
|
|
.np-homepage .np-subpage-container {
|
|
padding: 0 22px 120px;
|
|
}
|
|
}
|
|
|
|
</style> |