Datasnipper, Skuid, and Anthology

This commit is contained in:
Norm Rasmussen
2024-07-01 16:37:52 -04:00
parent faab7b7a0b
commit b7af632306
5 changed files with 27 additions and 12 deletions

View File

@ -0,0 +1,15 @@
<div class="np-learning-paths-resources">
{% if items.any? %}
{% assign sorted_items = items | reverse %}
{% for learning_path in sorted_items %}
{% include "cards_learning_path" with learning_path %}
{% endfor %}
{% else %}
<div class="np-learning-paths-resources-container">
<div class="np-zero-state-text">
{% t .empty %}
</div>
<img class="np-zero-state-learning-paths" alt="{% t .empty %}" />
</div>
{% endif %}
</div>