Compare commits
5 Commits
2b70a85da2
...
8a6c10cab9
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a6c10cab9 | |||
| bda6ae5eb9 | |||
| 3c94a3b8b9 | |||
| 9790042526 | |||
| d7ea149189 |
@ -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>
|
||||
|
||||
@ -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": [],
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
layout: base.njk
|
||||
title: About the Classifieds
|
||||
---
|
||||
|
||||
|
||||
@ -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
21
src/daily.njk
Normal 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>
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Listings for April 29th, 2026
|
||||
title: April 29th, 2026
|
||||
---
|
||||
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Listings for May 1st, 2026
|
||||
title: May 1st, 2026
|
||||
---
|
||||
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Listings for May 2nd, 2026
|
||||
title: May 2nd, 2026
|
||||
---
|
||||
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||
|
||||
|
||||
@ -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
7
src/daily/2026-05-04.njk
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: May 4th, 2026
|
||||
---
|
||||
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||
|
||||
{% set today = "2026-05-04" %}
|
||||
{% include "daily-listings.njk" %}
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
layout: base.njk
|
||||
title: Fediverse Skillshare Classifieds
|
||||
---
|
||||
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||
|
||||
3
src/src.11tydata.js
Normal file
3
src/src.11tydata.js
Normal file
@ -0,0 +1,3 @@
|
||||
export default {
|
||||
layout: "base.njk"
|
||||
}
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
layout: base.njk
|
||||
title: Submit a Listing
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user