changed header images to pull HD images instead of item_small

This commit is contained in:
Nasir Anthony Montalvo
2026-01-30 22:48:08 -06:00
parent 7834e02f14
commit 10ed7f20b9

View File

@@ -2,7 +2,6 @@
{%- comment -%} {%- comment -%}
Carousel Banner: rotates through random collection items Carousel Banner: rotates through random collection items
Always shows starlacoll033 first, then shuffles other items
{%- endcomment -%} {%- endcomment -%}
{%- assign carousel_items = "" | split: "" -%} {%- assign carousel_items = "" | split: "" -%}
@@ -200,7 +199,7 @@ Always shows starlacoll033 first, then shuffles other items
{%- for item in carousel_items -%} {%- for item in carousel_items -%}
<div class="carousel-slide{% if forloop.first %} active{% endif %}" <div class="carousel-slide{% if forloop.first %} active{% endif %}"
data-slide="{{ forloop.index0 }}" data-slide="{{ forloop.index0 }}"
style="background-image: url('{{ item.image_small | relative_url }}');"> style="background-image: url('{{ item.object_location | relative_url }}');">
</div> </div>
{%- endfor -%} {%- endfor -%}
@@ -259,7 +258,7 @@ Always shows starlacoll033 first, then shuffles other items
{ {
objectid: "{{ item.objectid }}", objectid: "{{ item.objectid }}",
title: "{{ item.title | escape }}", title: "{{ item.title | escape }}",
image: "{{ item.image_small | relative_url }}" image: "{{ item.object_location | relative_url }}"
}{% unless forloop.last %},{% endunless %} }{% unless forloop.last %},{% endunless %}
{%- endfor -%} {%- endfor -%}
]; ];