2026-04-29 08:30:52 -07:00
|
|
|
---
|
2026-05-05 08:17:28 -07:00
|
|
|
title: FediLearns Classifieds
|
2026-04-29 08:30:52 -07:00
|
|
|
---
|
2026-05-03 08:11:23 -07:00
|
|
|
{% css %}{% include "css/listings.css" %}{% endcss %}
|
2026-04-29 08:30:52 -07:00
|
|
|
|
2026-05-05 12:46:24 -07:00
|
|
|
<h2>Soon to become FediLearns!</h2>
|
|
|
|
|
|
2026-04-29 21:12:19 -07:00
|
|
|
<div id="jump-links">
|
|
|
|
|
<h2>jump to...</h2>
|
2026-04-30 08:58:58 -07:00
|
|
|
<ul>
|
2026-04-29 21:12:19 -07:00
|
|
|
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="#{{ tag | slugify }}">{{ tag }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2026-04-29 08:30:52 -07:00
|
|
|
|
2026-04-30 08:58:58 -07:00
|
|
|
<div id="listings">
|
2026-04-29 08:30:52 -07:00
|
|
|
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
|
2026-04-29 21:12:19 -07:00
|
|
|
<div class="category">
|
|
|
|
|
<div class="category-title">
|
|
|
|
|
<h2>{{ tag }}</h2>
|
|
|
|
|
<p>{{ tag | getTagline }}</p>
|
|
|
|
|
</div>
|
2026-05-01 18:32:27 -07:00
|
|
|
{% if collections[tag].length == 0 %}
|
|
|
|
|
<p>No listings.</p>
|
|
|
|
|
{% endif %}
|
2026-04-30 08:58:58 -07:00
|
|
|
{% for listing in collections[tag] %}
|
2026-05-04 10:15:21 -07:00
|
|
|
{% include "listing.njk" %}
|
2026-04-29 21:12:19 -07:00
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
2026-04-29 08:30:52 -07:00
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|