Glassdoor notes
This commit is contained in:
@ -0,0 +1,36 @@
|
||||
<div class="np-card">
|
||||
<div class="np-card-container">
|
||||
{% if course.ribbon %}
|
||||
<div class="np-card-ribbon">
|
||||
{{ course.ribbon }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<img
|
||||
class="np-card-image"
|
||||
alt="{{ course.name }}"
|
||||
src="{{ course.image_url }}"
|
||||
>
|
||||
<div class="np-card-content np-card-content-vertical np-card-padding">
|
||||
<h3 class="np-card-content-title">
|
||||
{{ course.name }}
|
||||
</h3>
|
||||
<div class="np-card-content-subtitle">
|
||||
{{ course.instructor_names }}
|
||||
</div>
|
||||
<div class="np-card-content-footer">
|
||||
<div class="np-card-content-progress np-button-color">
|
||||
{% t shared.progress, count: course.progress %}
|
||||
</div>
|
||||
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
|
||||
{% comment %}
|
||||
{% if course.has_to_restart? %}
|
||||
{% include "course_version_outdated_popup", path: course_path %}
|
||||
{% endif %}
|
||||
{% endcomment %}
|
||||
<a class="np-button np-button-wide" href="{{ course_path }}">
|
||||
{% t shared.view %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -184,7 +184,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include "messages" %}
|
||||
{% comment %} {% include "messages" %} {% endcomment %}
|
||||
|
||||
<style>
|
||||
.np-header {
|
||||
|
||||
@ -22,6 +22,13 @@ body, html {
|
||||
background-color:#dee0e3;
|
||||
}
|
||||
|
||||
.np-footer-logo-image {
|
||||
height: 30px;
|
||||
filter: none;
|
||||
opacity: 100;
|
||||
}
|
||||
|
||||
|
||||
.np-dashboard,
|
||||
.np-learning-paths {
|
||||
background: #fff;
|
||||
@ -87,7 +94,7 @@ body, html {
|
||||
}
|
||||
|
||||
@media (min-width:768px) {
|
||||
|
||||
|
||||
.slick-slide,
|
||||
.slick-list {
|
||||
margin: 0!important;
|
||||
|
||||
Reference in New Issue
Block a user