gaiety-life/_includes/tilindexlayout.njk
2023-10-05 13:14:37 -07:00

22 lines
816 B
Text

{% extends "baselayout.njk" %}
{% block main %}
<main class="mt-12 max-w-md mx-auto grid gap-5 grid-cols-2 text-sm">
<h3 class="text-center text-xs col-span-2 text-white">Inspired by <a class="underline" href="https://leebyron.com/til/">Lee Byron's TIL entry log</a> to <a class="underline" href="https://www.swyx.io/learn-in-public/">learn in public.</h3>
{%- for post in collections.tils | reverse -%}
<div class="flex flex-row text-white">
<a href="{{ post.url }}" class="underline">
<h3 class="font-semibold">
{{ post.data.title }}
</h3>
</a>
</div>
<div class="text-gray-300 text-right">
<time datetime="{{ post.date.toISOString() }}">
{{ post.date.toDateString() }}
</time>
</div>
{%- endfor -%}
</main>
{% endblock %}