Walmart Supplier Sandbox templates. Updated prod templates too.

This commit is contained in:
Norm Rasmussen
2025-04-21 17:17:41 -04:00
parent 26fd2a9615
commit 17f7d10b04
185 changed files with 7784 additions and 85 deletions

View File

@ -0,0 +1,29 @@
{% assign category_advisors = false %}
{% for group in current_person.groups %}
{% if group.name == 'Category Advisors' %}
{% assign category_advisors = true %}
{% endif %}
{% endfor %}
{% unless category_advisors %}
<script>
window.location.replace('/app');
</script>
{% endunless %}
{% include "header" %}
{% include "sub_navigation" %}
<main class="np-main np-learning-paths np-subpage-container np-max-width">
{% include 'advisors_banners' %}
<div class="np-learning-paths-main advisors-lps-container">
{% include "learning_paths_index_advisors", items: learning_paths.available %}
</div>
</main>
{% include "footer" %}
<style>
.advisors-lps-container {
margin-top: 40px;
}
</style>