Cin7 templates. Some wonkiness happening with their catalog filters.

This commit is contained in:
Norm Rasmussen
2025-07-01 17:10:37 -04:00
parent eb35f8d073
commit 69cfb846b4
7 changed files with 21 additions and 39 deletions

View File

@ -1,9 +1,3 @@
{% assign log_out = true %}
{% if current_person.signed_in? %}
{% assign log_out = false %}
{% endif %}
{% include "header" %}
<main class="np-main np-search np-subpage-container np-max-width">
<div class="np-resource-title">
@ -12,13 +6,13 @@
<div class="np-search-header">
<div class="np-resource-subtitle">
{% t .showing %}
{% comment %} <span class="np-resource-subtitle-number">{{ results.count }}</span> {% endcomment %}
<span class="np-resource-subtitle-number">{{ results.count }}</span>
{% t .results_for %}
<span class="np-button-color">"{{ results.term }}"</span>
</div>
</div>
{% if results.items.any? %}
{% render "search_result" for results.items as result %}
{% render "search_result" for results.items as result %}
{% else %}
{% include "search_zero_state" %}
{% endif %}