-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (25 loc) · 880 Bytes
/
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
---
layout: home
---
<section class="writing" id="writing">
<div class="wrap">
<div class="section-heading group">
<h2>Writing</h2>
</div>
<div class="articles">
<ul class="article-index constrained">
{% for post in site.posts %}
<li class="article-item show article-{{post.date | date: "%Y"}}">
{% include readingtime.html %}
<a href="{{ post.url }}">
<h3 class="article-title">{{ post.title }}</h3>
<p class="article-date">{{ post.date | date: "%B %e, %Y" }} • {{ reading_time }} read</p>
<p class="article-excerpt">{{ post.excerpt | remove: '<p>' | remove: '</p>' | strip_html | truncate: 150 }}</p>
</a>
</li>
{% endfor %}
</ul>
</div>
{% include categories.html %}
</div>
</section>