-
Notifications
You must be signed in to change notification settings - Fork 5
/
archive.html
34 lines (29 loc) · 865 Bytes
/
archive.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
---
layout: page
title: My Writing
order: 1
permalink: /archive/
description: This is the list of all my writing
---
<p>This is the list of all my writing.</p>
<ul class='archive'>
{% for post in site.posts %}
{% unless post.category %}
<li>
<span class="post-date"> {{post.date | date: "%b %-d, %Y"}} </span>
<a class="post-link" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<p>This is the list of reviews/notes I write of books I care about.</p>
<ul class='archive'>
{% for post in site.posts %}
{% if post.category == 'books' %}
<li>
<span class="post-date"> {{post.date | date: "%b %-d, %Y"}} </span>
<a class="post-link" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>