I think the final Pipedrive download. Walmart Supplier was updated as well.

This commit is contained in:
Norm Rasmussen
2025-07-10 16:18:51 -04:00
parent 41ca4834a2
commit 75455bbf4e
244 changed files with 3025 additions and 13818 deletions

View File

@ -1,26 +1,33 @@
<div class="np-card np-search-result">
<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>
<a class="np-search-result-title" href="{{ result.path }}">
{{ result.name }}
<span class="link"></span>
</a>
</div>
<div class="np-search-result-snippet">{{ result.sanitized_description }}</div>
{% if result.type == 'course' %}
<div class="course-card-search col-xs-12 col-sm-6 col-lg-4 search-result">
<a class="course-card-wrapper" href="{{ result.path }}">
<img class="course-card-image" src="{{ result.image_url }}" >
<div class="course-card-content">
<h5 class="course-card-title result-name">
{{ result.name }}
</h5>
<div class="course-card-description" style="overflow: hidden; text-overflow: ellipsis; -moz-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 5;">
{{ result.sanitized_description }}
</div>
<div class="course-card-footer">
<div class="course-card-button button-wrapper">
<div class="button-2 button-medium">
<span class="lang-en">See more</span>
<span class="lang-de">Mehr anzeigen</span>
<span class="lang-es">Ver más</span>
<span class="lang-fr">Voir plus</span>
<span class="lang-br">Ver mais</span>
</div>
</div>
</div>
</div>
</div>
</a>
</div>
{% comment %}
The styling below and the additional span is to make the entire div clickable as requested by the client.
{% endcomment %}
{% endif %}
<style>
.link {
@ -31,4 +38,9 @@ The styling below and the additional span is to make the entire div clickable as
left: 0;
z-index: 1;
}
.course-card-search {
padding: 20px;
}
</style>