21 lines
788 B
Text
21 lines
788 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 -%}
|
|
<div class="flex flex-row text-white">
|
|
<a href="{{ post.url }}">
|
|
<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 %}
|