46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
---
|
|
layout: base.njk
|
|
title: Fediverse Skillshare Classifieds
|
|
---
|
|
{% css %}{% include "css/home.css" %}{% endcss %}
|
|
|
|
<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] %}
|
|
<div class="listing{% if listing.data.draft %} draft{% endif %}">
|
|
<h3>{{ listing.data.title }}</h3>
|
|
<p class="blurb">
|
|
<strong>
|
|
<a href="https://{{ listing.data.url }}"
|
|
target="_blank">{{ listing.data.handle }}</a>
|
|
offers:</strong> {{ listing.data.blurb }}
|
|
</p>
|
|
<p class="listed-on">
|
|
listed on <time datetime="{{ listing.date | htmlDateString }}"
|
|
>{{ listing.date | readableDate() }}</time>
|
|
</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|