-
Notifications
You must be signed in to change notification settings - Fork 0
/
writing.html
32 lines (27 loc) · 1.03 KB
/
writing.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: page
headline: Writing
lead: I confidently use writing as my outlet to express my ideas and bring my thoughts to life. I have been skillfully crafting pieces about design, side-projects, and personal growth for quite some time now.
---
<section class="spacing-sections outer-margin">
{% assign postsByYear = site.posts | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in postsByYear %}
<section class="l-archive mb-l divider">
<h2 class="headline-secondary">{{ year.name }}</h2>
<ul class="list-none m-none">
{% for post in year.items %}
<li class="mb-l">
<h3 class="headline-secondary mb-xs"><a href="{{ post.url }}">{{ post.title }}</a></h3>
<span class="caption color-text-light">{{ post.date | date: "%-d %B, %Y"}}</span>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}
</section>
<section class="outer-margin">
{% include box-subscribe.html %}
</section>
{% if paginator.previous_page or paginator.next_page %}
{% include pagination.html %}
{% endif %}