Cin7 templates, Luminate templates. Walmart scripts and directory reorg

This commit is contained in:
Norm Rasmussen
2024-08-19 17:06:01 -04:00
parent d4c72dcc79
commit 46240bb702
133 changed files with 8027 additions and 83 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" %}