continue building out request infrastructure

This commit is contained in:
2026-05-06 08:59:44 -07:00
parent 2615556003
commit 7d6c64e964
24 changed files with 96 additions and 23 deletions

View File

@ -1,13 +1,11 @@
{% set tag = "offers" %}
<div id="listings">
<div class="listings">
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
<div class="category">
<div class="category-title">
<h2>{{ tag }}</h2>
<p>{{ tag | getTagline }}</p>
</div>
{% set listings = collections[tag] | filterByDate(day) | filterByTag(tag) %}
{% set listings = collections[tag] | filterByDate(day) | filterByTag(category) %}
{% if listings | length == 0 %}
<p>No listings.</p>
{% endif %}