oh i need to actually commit the listing file

This commit is contained in:
2026-05-04 10:16:11 -07:00
parent 8adb96f38f
commit 39f002fae7

16
_includes/listing.njk Normal file
View File

@ -0,0 +1,16 @@
<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>
{% if listing.data.rate %}
<p>Suggested rate: {{ listing.data.rate }}</p>
{% endif %}
<p class="listed-on">
listed on <time datetime="{{ listing.date | htmlDateString }}"
>{{ listing.date | readableDate() }}</time>
</p>
</div>