-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.27 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
---
layout: default
---
<div class="mt-6 text-gray-800">
<p>
This site is my (<a href="https://nickbelzer.me">Nick Belzer</a>) <a href="https://joelhooks.com/digital-garden">digital garden</a>. Here I document my learning experience, for myself and any potential reader (yes you). For more information on the how and what I suggest you take a look at the following article: <a href="/topics/2020/05/12/building-my-personal-knowledge-repository.html">"Building my personal notes knowledge repository"</a>.
</p>
</div>
<div class="mt-6">
<ul class="list-none border border-solid border-gray-200 rounded-md overflow-hidden -mx-4 divide-y divide-gray-200 mb-6">
{% for post in site.pages reversed %}
<li>
<a href="{{ post.url }}" class="block py-4 px-4 hover:bg-gray-50 border-none">
<div class="text-sm text-gray-300 font-semibold">
{{ post.content | number_of_words | divided_by: 180.0 | ceil }} min
</div>
<div class="my-1 text-lg font-semibold text-black-700">
{{ post.title }}
</div>
<div class="text-gray-500">
{{ post.subtitle}}
</div>
</a>
</li>
{% endfor %}
</ul>
</div>