Backed up Walmart Supplier's templates. Downloaded BuilderTrend's as well as they have just been assigned to me.

This commit is contained in:
Norm Rasmussen
2024-12-20 13:32:45 -05:00
parent c1d4234407
commit 60a55e60ae
150 changed files with 7019 additions and 169 deletions

View File

@ -0,0 +1,20 @@
{% if result.activity.type != "video" and result.activity.type != "richtext" and result.activity.type != "quiz" %}
<div class="np-card np-search-result col-xs-12 col-sm-6 col-lg-3">
<div class="np-card-container">
<div class="np-card-content">
<img
class="np-search-result-image"
alt="{{ result.name }}"
src="{{ result.image_url }}"
/>
<div class="np-search-result-content">
<div class="np-search-result-title">
{{ result.name }}
</div>
<a href="{{ result.path }}" class="np-button np-button-wide" style="margin-top: 16px;">View</a>
</div>
</div>
</div>
</div>
{% endif %}