-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
25 lines (24 loc) · 1001 Bytes
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
---
<header class="py-4 w-full min-h-16 bg-dark shadow-md">
<div class="max-w-3xl mx-auto h-full flex items-center justify-between">
{% include back-link.html href="/" title="Home" %}
<span class="text-light-gray font-semibold opacity-50">{{ site.nickname }}</span>
</div>
</header>
<main class="max-w-3xl mx-auto mt-8 space-y-4">
<ul class="space-y-2 cursor-default">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">
<div class="bg-dark-gray rounded-lg py-4 px-6">
<h2 class="font-medium">{{ post.title }}</h2>
<p class="leading-2 text-light-gray text-pretty mt-2">{{ post.excerpt }}</p>
<span class="inline-flex justify-end text-xs text-gray w-full mt-4">{{ post.published_at | date: "%-d %B, %Y" }}</span>
</div>
</a>
</li>
{% endfor %}
</ul>
</main>