-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (30 loc) · 1.03 KB
/
index.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
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: default
title: joel oliveira
---
{% for post in site.posts limit:1 %}
<article>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<h3>
{{ post.date | date_to_string }}
{% for tag in post.tags %}
<span class="inline-block px-4 text-gray-200 not-italic">⦁</span>
<a href="/tag/{{ tag | downcase | slugify }}" class="border-solid border-blue-200 border-b-2 px-1 pt-1 hover:bg-blue-100">#{{ tag }}</a>
{% endfor %}
</h3>
{{ post.content }}
</article>
{% endfor %}
{% for post in site.posts offset:1 limit:4 %}
<article>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<h3>
{{ post.date | date_to_string }}
{% for tag in post.tags %}
<span class="inline-block px-4 text-gray-200 not-italic">⦁</span>
<a href="/tag/{{ tag | downcase | slugify }}" class="border-solid border-blue-200 border-b-2 px-1 pt-1 hover:bg-blue-100">#{{ tag }}</a>
{% endfor %}
</h3>
{{ post.content | lazy_load_images }}
</article>
{% endfor %}