17 lines
505 B
Plaintext
17 lines
505 B
Plaintext
<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] | filterByDate(today) | length == 0 %}
|
|
<p>No listings.</p>
|
|
{% endif %}
|
|
{% for listing in collections[tag] | filterByDate(today) %}
|
|
{% include "listing.njk" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|