-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 947 Bytes
/
index.html
File metadata and controls
23 lines (20 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: splash
title: FoxIO Blog
image: /assets/img/logos/foxio_logo_wordmark.png
---
<h1 class="mb-4 font-bold text-white" style="font-size:2.25em; margin-bottom:0.8888889em; line-height:1.1111111">
{{ page.title }}
</h1>
<ul class="grid items-stretch gap-4 lg:grid-cols-3">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}" class="flex flex-col w-full h-full p-4 space-y-2 rounded-lg lg:p-8 hover:bg-white hover:bg-opacity-10">
<img src="{{ post.image }}" alt="{{ post.title }}" class="w-full rounded-lg">
<h2 class="!mt-4 text-lg font-semibold text-white">{{ post.title }}</h2>
<p class="text-sm text-gray-light">{{ post.content | strip_html | truncatewords: 20 }}</p>
<p class="text-xs font-medium uppercase text-gray">{{ post.date | date: "%b %d, %Y" }} • {{ post.author }}</p>
</a>
</li>
{% endfor %}
</ul>