Datasnipper, Skuid, and Anthology
This commit is contained in:
@ -33,6 +33,9 @@
|
||||
</script>
|
||||
|
||||
{% include "header" %}
|
||||
<div class="mobile-subnav">
|
||||
{% include "sub_navigation" %}
|
||||
</div>
|
||||
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
|
||||
|
||||
<div class="np-homepage-hero">
|
||||
@ -53,9 +56,6 @@
|
||||
|
||||
{% comment %} {% include "browse_by_product" %} {% endcomment %}
|
||||
|
||||
<div class="mobile-subnav" style="margin: -24px -20px 16px;">
|
||||
{% include "sub_navigation" %}
|
||||
</div>
|
||||
|
||||
<div class="np-catalog-header-wrapper catalog-header-wrapper">
|
||||
|
||||
@ -332,10 +332,6 @@
|
||||
margin-top: none;
|
||||
}
|
||||
|
||||
.mobile-subnav{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-and-filter-component{
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
|
||||
@ -0,0 +1,15 @@
|
||||
<div class="np-learning-paths-resources">
|
||||
{% if items.any? %}
|
||||
{% assign sorted_items = items | reverse %}
|
||||
{% for learning_path in sorted_items %}
|
||||
{% include "cards_learning_path" with learning_path %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<div class="np-learning-paths-resources-container">
|
||||
<div class="np-zero-state-text">
|
||||
{% t .empty %}
|
||||
</div>
|
||||
<img class="np-zero-state-learning-paths" alt="{% t .empty %}" />
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
@ -56,7 +56,7 @@ $(document).ready(function(){
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user