ore updates i don't wanna split this up lbr
This commit is contained in:
8
src/ads/08-test-test.md
Normal file
8
src/ads/08-test-test.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Picking the right haircut
|
||||
handle: 08
|
||||
server: test.test
|
||||
tags: beauty and health
|
||||
blurb: Duis nec varius dui. In mauris neque, scelerisque sed commodo accumsan, sodales vitae tortor.
|
||||
date: 2026-04-30
|
||||
---
|
||||
@ -6,7 +6,7 @@ title: Fediverse Skillshare Classifieds
|
||||
|
||||
<div id="jump-links">
|
||||
<h2>jump to...</h2>
|
||||
<ul id="category-list">
|
||||
<ul>
|
||||
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
|
||||
<li>
|
||||
<a href="#{{ tag | slugify }}">{{ tag }}</a>
|
||||
@ -15,23 +15,24 @@ title: Fediverse Skillshare Classifieds
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="ads">
|
||||
<div id="listings">
|
||||
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
|
||||
<div class="category">
|
||||
<div class="category-title">
|
||||
<h2>{{ tag }}</h2>
|
||||
<p>{{ tag | getTagline }}</p>
|
||||
</div>
|
||||
{% for ad in collections[tag] %}
|
||||
<div class="ad">
|
||||
<h3>{{ ad.data.title }}</h3>
|
||||
{% for listing in collections[tag] %}
|
||||
<div class="listing">
|
||||
<h3>{{ listing.data.title }}</h3>
|
||||
<p class="blurb">
|
||||
<a href="https://{{ ad.data.server }}/@{{ ad.data.handle }}"
|
||||
target="_blank">@{{ ad.data.handle }}@{{ ad.data.server}}</a>
|
||||
offers: {{ ad.data.blurb }}
|
||||
<strong>
|
||||
<a href="https://{{ listing.data.server }}/@{{ listing.data.handle }}"
|
||||
target="_blank">@{{ listing.data.handle }}@{{ listing.data.server}}</a>
|
||||
offers:</strong> {{ listing.data.blurb }}
|
||||
</p>
|
||||
<p class="listed-on">
|
||||
listed on <time datetime="{{ ad.date | htmlDateString }}">{{ ad.date | readableDate() }}</time>
|
||||
listed on <time datetime="{{ listing.date | htmlDateString }}">{{ listing.date | readableDate() }}</time>
|
||||
</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
@ -1,21 +1,107 @@
|
||||
---
|
||||
layout: base.njk
|
||||
title: Submit an Ad
|
||||
title: Submit a Listing
|
||||
---
|
||||
|
||||
{% css %}
|
||||
.category-title {
|
||||
font-family: "Bebas Neue";
|
||||
font-size: 1.5rem;
|
||||
background-color: var(--color-gray);
|
||||
padding: .25rem;
|
||||
}
|
||||
{% endcss %}
|
||||
|
||||
<p>To submit to the Skillshare Classifieds, you'll need:</p>
|
||||
|
||||
<ul>
|
||||
<li>your fediverse handle</li>
|
||||
<li>the most relevant category for your listing</li>
|
||||
<li>the <a href="#category-guide">most relevant category</a> for your listing</li>
|
||||
<li>a title for your offering</li>
|
||||
<li>a short description</li>
|
||||
</ul>
|
||||
|
||||
<p>See <a href="/">the home page</a> for inspiration.</p>
|
||||
|
||||
<p> You can submit using the embed below,
|
||||
<a href="https://airtable.com/appbdRJ59MLprB1iC/pagfJTOl4KPwh7trd/form"
|
||||
target="_blank">open the form in a new tab</a>, or
|
||||
<a href="mailto:lee.cattarin@gmail.com?subject=Fediverse%20Skillshare%20Classifieds">email
|
||||
Lee</a> all the information mentioned above.
|
||||
</p>
|
||||
|
||||
<p>Feel free to submit multiple times in multiple categories, but I'd prefer that
|
||||
all offerings within one category be grouped into one listing if possible!</p>
|
||||
|
||||
<iframe class="airtable-embed"
|
||||
src="https://airtable.com/embed/appbdRJ59MLprB1iC/pagfJTOl4KPwh7trd/form"
|
||||
frameborder="0" onmousewheel="" width="100%" height="533"
|
||||
style="background: transparent; border: 1px solid #ccc;">
|
||||
</iframe>
|
||||
|
||||
<h2>Category guide</h2>
|
||||
|
||||
<p>Here's some examples as to what might fall under each category as they currently exist...</p>
|
||||
|
||||
<h3 class="category-title">Animals and the outdoors</h3>
|
||||
<ul>
|
||||
<li>Raising a cat</li>
|
||||
<li>Mushroom identification</li>
|
||||
<li>Natural navigation</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Art and Crafts</h3>
|
||||
<ul>
|
||||
<li>Learning to knit</li>
|
||||
<li>Painting techniques</li>
|
||||
<li>How to get started with woodcarving</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Beauty and Health</h3>
|
||||
<ul>
|
||||
<li>Fashion tips</li>
|
||||
<li>How to braid hair</li>
|
||||
<li>Workouts for core strength</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Food and Drink</h3>
|
||||
<ul>
|
||||
<li>Sourdough starting</li>
|
||||
<li>Gardening for food (also totally cool in "Animals and the Outdoors")</li>
|
||||
<li>One-pot meals</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">History and Science</h3>
|
||||
<ul>
|
||||
<li>Exploring ancient history</li>
|
||||
<li>Chemistry basics</li>
|
||||
<li>Philosophy discussion</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Interpersonal and Life</h3>
|
||||
<ul>
|
||||
<li>Neurodivergent life tactics</li>
|
||||
<li>Navigating workplace transition</li>
|
||||
<li>Mediating hard discussions</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Repair and DIY</h3>
|
||||
<ul>
|
||||
<li>Plumbing basics</li>
|
||||
<li>Fixing broken appliances</li>
|
||||
<li>Mending clothing (also totally cool in "Art and Crafts")</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Technology</h3>
|
||||
<ul>
|
||||
<li>Home networking</li>
|
||||
<li>Introductory web development</li>
|
||||
<li>Learning Python</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="category-title">Writing Editing and Literature</h3>
|
||||
<ul>
|
||||
<li>Editing scientific writing</li>
|
||||
<li>Creating relatable characters</li>
|
||||
<li>How to write a book review</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user