Luminate has fully rebranded as Scintilla and all templates have been updated.

This commit is contained in:
Norm Rasmussen
2025-02-05 16:19:58 -05:00
parent e60cdf3a60
commit 12e5a4afdb
252 changed files with 1710 additions and 249 deletions

View File

@ -0,0 +1,33 @@
{% include "header" %}
{% include "sub_navigation" %}
<main class="np-main np-certifications np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="np-catalog-header">
<div class="Certifications np-resource-title">{{ custom_page.headline }}</div>
<div class="Certifications np-resource-subtitle">{{ custom_page.subheadline }}</div>
</div>
</div>
<div class="np-learning-paths-main">
{% for learning_path in learning_paths.available %}
{% for category in learning_path.categories %}
{% if category.name == 'Certifications' %}
{% include "cards_learning_path" %}
</div>
{% else %}
{% endif %}
{% endfor %}
{% endfor %}
{% comment %}
<div class="row">
<div class="col-xs-12">
<div class="np-dashboard-resources-container">
<div class="np-zero-state-text">
{{ custom_page.content }}
</div>
<img class="np-zero-state-courses" />
</div>
</div>
</div>
{% endcomment %}
</main>
{% include "footer" %}