Files
fedilearns/src/index.njk
2026-05-05 12:47:40 -07:00

35 lines
820 B
Plaintext

---
title: FediLearns Classifieds
---
{% css %}{% include "css/listings.css" %}{% endcss %}
<h2>Soon to become FediLearns!</h2>
<div id="jump-links">
<h2>jump to...</h2>
<ul>
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
<li>
<a href="#{{ tag | slugify }}">{{ tag }}</a>
</li>
{% endfor %}
</ul>
</div>
<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>
{% if collections[tag].length == 0 %}
<p>No listings.</p>
{% endif %}
{% for listing in collections[tag] %}
{% include "listing.njk" %}
{% endfor %}
</div>
{% endfor %}
</div>