Compare commits

..

5 Commits

13 changed files with 49 additions and 10 deletions

View File

@ -4,11 +4,14 @@
maintained by <a href="https://leecat.art" target="_blank">lee</a>
</li>
<li>
<a href="https://heckin.technology/inherentlee/fedi-classifieds"
target="_blank">source code</a>
<a href="/daily/">Listings by day</a>
</li>
<li>
<a href="/feed.xml">RSS</a>
</li>
<li>
<a href="https://heckin.technology/inherentlee/fedi-classifieds"
target="_blank">source code</a>
</li>
</ul>
</footer>

View File

@ -3,7 +3,8 @@
"version": "1.0.0",
"description": "",
"scripts": {
"build": "rm -rf _site && npx @11ty/eleventy --pathprefix=fedi-skillshares",
"build": "rm -rf _site && npx @11ty/eleventy",
"build-codeberg": "rm -rf _site && npx @11ty/eleventy --pathprefix=fedi-skillshares",
"dev": "rm -rf _live && npx @11ty/eleventy --serve --quiet --output _live"
},
"keywords": [],

View File

@ -1,5 +1,4 @@
---
layout: base.njk
title: About the Classifieds
---

View File

@ -0,0 +1,7 @@
---
title: Foraging in the UK
handle: "@worshipthesquid@weirder.earth"
url: "weirder.earth/@worshipthesquid"
blurb: "I'm happy to share responsible UK plant foraging skills, including figuring out how you can get started. I'm in Scotland (but the rest of the UK shares a lot of the same plants). (Also always excited to hear about others' foraging and plant connection!)"
date: 2026-05-04
---

21
src/daily.njk Normal file
View File

@ -0,0 +1,21 @@
---
title: Day-by-day listings
pagination:
data: collections.daily
size: 30
reverse: true
---
{% css %}
ol {
list-style: none;
text-align: center;
}
{% endcss %}
<ol>
{% for post in pagination.items %}
<li>
<a href="{{ post.url }}">{{ post.data.title }}</a>
</li>
{% endfor %}
</ol>

View File

@ -1,5 +1,5 @@
---
title: Listings for April 29th, 2026
title: April 29th, 2026
---
{% css %}{% include "css/listings.css" %}{% endcss %}

View File

@ -1,5 +1,5 @@
---
title: Listings for May 1st, 2026
title: May 1st, 2026
---
{% css %}{% include "css/listings.css" %}{% endcss %}

View File

@ -1,5 +1,5 @@
---
title: Listings for May 2nd, 2026
title: May 2nd, 2026
---
{% css %}{% include "css/listings.css" %}{% endcss %}

View File

@ -1,5 +1,5 @@
---
title: Listings for May 3rd, 2026
title: May 3rd, 2026
---
{% css %}{% include "css/listings.css" %}{% endcss %}

7
src/daily/2026-05-04.njk Normal file
View File

@ -0,0 +1,7 @@
---
title: May 4th, 2026
---
{% css %}{% include "css/listings.css" %}{% endcss %}
{% set today = "2026-05-04" %}
{% include "daily-listings.njk" %}

View File

@ -1,5 +1,4 @@
---
layout: base.njk
title: Fediverse Skillshare Classifieds
---
{% css %}{% include "css/listings.css" %}{% endcss %}

3
src/src.11tydata.js Normal file
View File

@ -0,0 +1,3 @@
export default {
layout: "base.njk"
}

View File

@ -1,5 +1,4 @@
---
layout: base.njk
title: Submit a Listing
---