rename ads -> offers, add new listing (syd)

This commit is contained in:
2026-05-06 07:28:25 -07:00
parent 439e207539
commit bfb03575fb
49 changed files with 28 additions and 5 deletions

View File

@ -21,10 +21,11 @@ title: FediLearns Classifieds
<h2>{{ tag }}</h2>
<p>{{ tag | getTagline }}</p>
</div>
{% if collections[tag].length == 0 %}
{% set listings = collections[tag] | filterByTag("offers") %}
{% if listings | length == 0 %}
<p>No listings.</p>
{% endif %}
{% for listing in collections[tag] | sortAlphabeticallyByTitle %}
{% for listing in listings | sortAlphabeticallyByTitle %}
{% include "listing.njk" %}
{% endfor %}
</div>