Compare commits
12 Commits
40509f436c
...
a0a1c04651
| Author | SHA1 | Date | |
|---|---|---|---|
| a0a1c04651 | |||
| 98d5544d0a | |||
| e9c5c32026 | |||
| a4338717e4 | |||
| 2904872e34 | |||
| e89caf9423 | |||
| 57fa31ba45 | |||
| 1ecd538c90 | |||
| f3f9c4d70e | |||
| c7b6f1a28d | |||
| a2d4dc99fb | |||
| fdd3db4e59 |
@ -1,6 +1,6 @@
|
|||||||
export default {
|
export default {
|
||||||
title: "Fediverse Skillshare Classifieds",
|
title: "FediLearns",
|
||||||
description: "Skillshare listings for the Fediverse",
|
description: "Learning together, by and for the fediverse",
|
||||||
url: "https://inherentlee.codeberg.page/fedi-skillshares",
|
url: "https://inherentlee.codeberg.page/fedi-skillshares",
|
||||||
author: "Lee Cattarin"
|
author: "Lee Cattarin"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
|
|
||||||
{% if title %}
|
{% if title %}
|
||||||
{% set pageTitle %}{{ title }} | {{ metadata.title }}{% endset %}
|
{% set pageTitle %}{{ title }} | {{ metadata.title }}{% endset %}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<div class="listing{% if listing.data.draft %} draft{% endif %}">
|
<div class="listing">
|
||||||
<h3>{{ listing.data.title }}</h3>
|
<h3>{{ listing.data.title }}</h3>
|
||||||
<p class="blurb">
|
<p class="blurb">
|
||||||
<strong>
|
<strong>
|
||||||
@ -7,7 +7,7 @@
|
|||||||
offers:</strong> {{ listing.data.blurb }}
|
offers:</strong> {{ listing.data.blurb }}
|
||||||
</p>
|
</p>
|
||||||
{% if listing.data.rate %}
|
{% if listing.data.rate %}
|
||||||
<p>Suggested rate: {{ listing.data.rate }}</p>
|
<p><strong>Suggested rate:</strong> {{ listing.data.rate }}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p class="listed-on">
|
<p class="listed-on">
|
||||||
listed on <time datetime="{{ listing.date | htmlDateString }}"
|
listed on <time datetime="{{ listing.date | htmlDateString }}"
|
||||||
|
|||||||
@ -78,6 +78,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.category-title h2 {
|
.category-title h2 {
|
||||||
|
text-align: left;
|
||||||
scroll-margin-top: 4rem;
|
scroll-margin-top: 4rem;
|
||||||
font-family: "Bebas Neue";
|
font-family: "Bebas Neue";
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -95,12 +96,12 @@
|
|||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blurb {
|
.listing strong {
|
||||||
margin-bottom: .5rem;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blurb strong {
|
.blurb {
|
||||||
font-weight: bold;
|
margin-bottom: .5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.listed-on {
|
.listed-on {
|
||||||
|
|||||||
@ -50,14 +50,14 @@ main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h3 {
|
h1, h2, h3 {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
margin: 3rem auto;
|
margin: 3rem auto 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 650px) {
|
@media (max-width: 650px) {
|
||||||
@ -68,7 +68,8 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin-bottom: 1rem;
|
text-align: center;
|
||||||
|
margin-bottom: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
|
|||||||
@ -42,8 +42,8 @@ export default async function(eleventyConfig) {
|
|||||||
},
|
},
|
||||||
metadata: {
|
metadata: {
|
||||||
language: "en",
|
language: "en",
|
||||||
title: "Fediverse Skillshare Classifieds",
|
title: "FediLearns",
|
||||||
subtitle: "Skillshare listings for the Fediverse",
|
subtitle: "Learning together, by and for the fediverse",
|
||||||
base: "https://inherentlee.codeberg.page/",
|
base: "https://inherentlee.codeberg.page/",
|
||||||
author: {
|
author: {
|
||||||
name: "Lee Cattarin"
|
name: "Lee Cattarin"
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "fediverse-classifieds",
|
"name": "fedilearns",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "Learning together, by and for the fediverse",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rm -rf _site && npx @11ty/eleventy",
|
"build": "rm -rf _site && npx @11ty/eleventy",
|
||||||
"build-codeberg": "npx @11ty/eleventy --pathprefix=/fedi-skillshares/",
|
"build-codeberg": "npx @11ty/eleventy --pathprefix=/fedi-skillshares/",
|
||||||
|
|||||||
@ -47,5 +47,6 @@ title: About the Classifieds
|
|||||||
<p>
|
<p>
|
||||||
Built with <a href="https://11ty.dev" target="_blank">{{ eleventy.generator }}</a>,
|
Built with <a href="https://11ty.dev" target="_blank">{{ eleventy.generator }}</a>,
|
||||||
and <a href="https://declare-ai.org/1.0.0/none.html" target="_blank">without the
|
and <a href="https://declare-ai.org/1.0.0/none.html" target="_blank">without the
|
||||||
aid of generative AI</a>. Hosted on Codeberg Pages.
|
aid of generative AI</a>. Hosted by <a href="https://heckin.technology/"
|
||||||
|
target="_blank">heckin.technology</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
8
src/ads/art-and-crafts/robotistry-fediscience-org.md
Normal file
8
src/ads/art-and-crafts/robotistry-fediscience-org.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "Quilts and Colors!"
|
||||||
|
handle: "@robotistry@fediscience.org"
|
||||||
|
url: "fediscience.org/@robotistry"
|
||||||
|
blurb: "If you want a second set of eyes on your quilt design or help choosing colors (for any project!), I'm here. I have made many pieced quilts and can help you learn how to use fabric color, pattern, and intensity with your design to get the effect you want. I can also help you design your quilt, if you'd like help with that. I have a large library of quilt books for inspiration. I can also provide troubleshooting and recovery ideas when things (inevitably) go wrong."
|
||||||
|
rate:
|
||||||
|
date: 2026-05-05
|
||||||
|
---
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "Short Fiction & Nonfiction Editing"
|
||||||
|
handle: "@WizardOfDocs@wandering.shop"
|
||||||
|
url: "wandering.shop/@WizardOfDocs"
|
||||||
|
blurb: "Need help making your writing sound the way you want? Frustrated with AI hype and looking for an editor who actually understands the difference between lightning and a lightning bug? I've been writing and editing short fiction and technical documentation for at least a decade, and I want to help you make your audience feel what you want them to feel and learn what you want them to learn. I'm also happy to go through my feedback with you and help you develop your own writing instincts."
|
||||||
|
rate:
|
||||||
|
date: 2026-05-05
|
||||||
|
---
|
||||||
7
src/daily/2026-05-05.njk
Normal file
7
src/daily/2026-05-05.njk
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: May 5th, 2026
|
||||||
|
---
|
||||||
|
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||||
|
|
||||||
|
{% set today = "2026-05-05" %}
|
||||||
|
{% include "daily-listings.njk" %}
|
||||||
@ -1,8 +1,10 @@
|
|||||||
---
|
---
|
||||||
title: Fediverse Skillshare Classifieds
|
title: FediLearns Classifieds
|
||||||
---
|
---
|
||||||
{% css %}{% include "css/listings.css" %}{% endcss %}
|
{% css %}{% include "css/listings.css" %}{% endcss %}
|
||||||
|
|
||||||
|
<h2>Soon to become FediLearns!</h2>
|
||||||
|
|
||||||
<div id="jump-links">
|
<div id="jump-links">
|
||||||
<h2>jump to...</h2>
|
<h2>jump to...</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
|||||||
@ -11,7 +11,7 @@ title: Submit a Listing
|
|||||||
}
|
}
|
||||||
{% endcss %}
|
{% endcss %}
|
||||||
|
|
||||||
<p>To submit to the Skillshare Classifieds, you'll need:</p>
|
<p>To submit to the FediLearns Classifieds, you'll need:</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>the link to your fediverse profile</li>
|
<li>the link to your fediverse profile</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user