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>

View File

@ -0,0 +1,8 @@
---
title:
handle: "@holothuroid@rollenspiel.social"
url: "rollenspiel.social/@holothuroid"
blurb:
rate:
date:
---

View File

@ -0,0 +1,8 @@
---
title: "Reading Tarot for Personal Introspection"
handle: "@syd@pagan.plus"
url: "pagan.plus/@syd"
blurb: "Interested in tarot? Have a deck you don't know what to do with? I can talk you through the basics of reading tarot for personal insight, including the tarot journaling practice I used to learn the card meanings and a simple three card spread for routine readings."
rate:
date: 2026-05-06
---

View File

@ -1,6 +1,6 @@
export default {
permalink: false,
tags: [
"ads"
"offers"
]
};