Files
unprompted/subjects.njk

24 lines
536 B
Plaintext
Raw Normal View History

---
layout: base.njk
title: Subjects
permalink: /subjects/
---
<h1>Subjects</h1>
{%- for subject in collections.subjects %}
<section class="subject-group">
<h2>{{ subject }}</h2>
<ul>
{%- for post in collections[subject] | sort(true, false, "date") %}
<li>
<a href="{{ post.url }}">{{ post.data.title | inlineMarkdown | safe }}</a>
<time datetime="{{ post.date | isoDate }}">{{ post.date | readableDate }}</time>
</li>
{%- endfor %}
</ul>
</section>
{%- else %}
<p>No subjects yet.</p>
{%- endfor %}