This commit is contained in:
2026-04-29 08:30:52 -07:00
commit b053d27321
1660 changed files with 329972 additions and 0 deletions

7
src/ads/00-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: film photography
handle: 00
server: test.test
tags: art and crafts
blurb: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
---

7
src/ads/01-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: let's talk about the roman empire
handle: 01
server: test.test
tags: history and science
blurb: Quisque mauris erat, tempor non egestas sollicitudin, feugiat id risus. Duis eget ornare nunc. Cras sodales, eros quis finibus luctus, enim sem dictum ante, sed sodales ipsum ante a metus.
---

7
src/ads/02-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: neurodivergent coping strats
handle: 02
server: test.test
tags: interpersonal and life
blurb: Fusce faucibus mauris ut metus molestie viverra. In varius erat in lectus scelerisque, vitae ornare sapien euismod. Pellentesque ornare aliquam erat, pellentesque eleifend tellus consequat ut. Donec mollis, lacus vitae bibendum hendrerit, nisi metus dignissim lacus, nec tincidunt nisl ligula vel metus.
---

7
src/ads/03-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: editing 102
handle: 03
server: test.test
tags: writing editing and literature
blurb: Sed a commodo lectus. Curabitur tincidunt, eros vel mollis dapibus, mauris dui pharetra mauris, et dapibus leo nisi vitae eros.
---

7
src/ads/04-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: sourdough starting!
handle: 04
server: test.test
tags: food and drink
blurb: Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Vivamus vitae augue ac neque congue pellentesque vitae a enim. Donec euismod dolor sit amet dui dapibus posuere. Donec eget blandit ligula, ac tempor nunc.
---

7
src/ads/05-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: bug identification for beginners
handle: 05
server: test.test
tags: animals and the outdoors
blurb: Duis interdum purus non iaculis convallis. Nunc mi lorem, consequat sed luctus vitae, lobortis in arcu.
---

7
src/ads/06-test-test.md Normal file
View File

@ -0,0 +1,7 @@
---
title: fix your sink or toilet
handle: 06
server: test.test
tags: home improvement and diy
blurb: Aliquam justo justo, scelerisque a ligula sed, elementum pharetra quam. Ut augue nibh, finibus vel dui nec, sagittis bibendum leo. Quisque libero diam, maximus in dui ac, sollicitudin congue enim.
---

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

@ -0,0 +1,3 @@
export default {
permalink: false,
};

View File

@ -0,0 +1,7 @@
---
title: intro web development and terminal basics
handle: inherentlee
server: flipping.rocks
tags: technology
blurb: I'm happy to help you set up a personal or hobby site with HTML, CSS, and JS basics, or maybe a static site generator! Alternately, I'll talk about git and the terminal.
---

7
src/ads/template.md Normal file
View File

@ -0,0 +1,7 @@
---
title:
handle:
server:
tags:
blurb:
---

18
src/index.njk Normal file
View File

@ -0,0 +1,18 @@
---
layout: base.njk
---
<h1>Fediverse Classifieds</h1>
<div id="ads">
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
<h2 class="category">{{ tag }}</h2>
<p class="tagline">{{ tag | getTagline }}</p>
{% for post in collections[tag] %}
<h3>{{ post.data.title }}</h3>
<a href="https://{{ post.data.server }}/@{{ post.data.handle }}"
target="_blank">@{{ post.data.handle }}@{{ post.data.server}}</a>
<p>{{ post.data.blurb }}</p>
{% endfor %}
{% endfor %}
</div>