-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
37 lines (29 loc) · 828 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
32
33
34
35
36
37
---
layout: default
title: writing on software, book writeups, projects
---
{% include header.html %}
<div id="series">
{% for series in site.data.series %}
<h3 id="{{ series.tag_name }}">{{ series.name }}</h3>
<p>{{ series.desc }}</p>
<ul>
{% for post in site.tags[series.tag_name] %}
<li {% if post.favorite %}class="favorite"{% endif %}>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
<h3 id="writeup">Book Writeups</h3>
<p>Short summaries of books I've been reading</p>
<ul>
{% for post in site.categories.writeup %}
<li {% if post.favorite %}class="favorite"{% endif %}>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
<hr/>
{% include fine-print.html %}