Luminate templates for the language switcher. Added some items to the screenshot scraper.

This commit is contained in:
Norm Rasmussen
2024-04-01 17:46:07 -04:00
parent d71e70688f
commit 9286f52fb2
115 changed files with 5859 additions and 26 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="np-resource-title">{{ custom_page.headline }}</div>
<div class="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" %}