Files
Gainsight/Custom_Templates/customer_templates/Skan/_course_header.html.liquid

24 lines
895 B
Plaintext

<div class="np-top-vocabulary np-text-title np-text-muted">
{{ current_school.course_vocabulary }}
<i class="far fa-graduation-cap np-button-color np-learning-path-icon np-hidden-mobile">
</i>
</div>
<div class="np-top-title">
<a href="{% route dashboard %}" class="np-back-button" id="course-header-back-button" aria-label="{% t shared.go_back %}">
<i class="far fa-arrow-left np-hidden-mobile np-icon-back"></i>
</a>
{{ course.name }}
</div>
<img
src="{{ course.image_url }}"
class="np-top-image np-hidden-desktop"
alt="{{ course.name }}"
/>
<script>
if(window.location.href.indexOf('/learning_paths') > -1){
let reroute = '/app' + window.location.href.slice(window.location.href.indexOf('/learning_paths/'),window.location.href.indexOf('/learning_paths/')+52);
document.querySelector('#course-header-back-button').setAttribute('href', reroute);
}
</script>