Files
Gainsight/Custom_Templates/customer_templates/Kitman Labs/learning_paths.html.liquid
2022-11-11 21:54:43 -05:00

23 lines
685 B
Plaintext

{% include "header", current_page_orgin: "learning_paths" %}
<main class="np-main np-learning-paths np-subpage-container">
<div class="page__header-wrapper">
<h1 class="np-resource-title">
Browse Learning Paths
</h1>
{% comment %} Capture subtitle text so it can be modified {% endcomment %}
{% capture subtitle_text %}
{% t .subtitle %}
{% endcapture %}
{% if subtitle_text and subtitle_text.size > 0 %}
<div class="np-resource-subtitle">
{{ subtitle_text | replace: "courses", "tutorials" }}
</div>
{% endif %}
</div>
{% include "learning_paths_index", items: learning_paths.available, card_classes: "col-md-6" %}
</main>
{% include "footer" %}