forked from tekknolagi/tekknolagi.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
34 lines (30 loc) · 941 Bytes
/
blog.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
---
title: Blog
layout: page
blog_index: true
permalink: blog/
---
<ul>
{% for post in site.posts %}
{% unless post.draft == true or post.series %}
<li class="post-item">
<a class="post-title" href="{{ post.url }}"><span>{{ post.title }}</span></a>
<div class="post-date"><i>{{ post.date | date: '%B %-d, %Y' }}</i></div>
</li>
{% endunless %}
{% endfor %}
</ul>
<h2>Runtime optimization, the series</h2>
<ul>
{% assign posts_chrono = site.posts | where: "series","runtime-opt" | reverse %}
{% for post in posts_chrono %}
<li class="post-item">
<a class="post-title" href="{{ post.url }}"><span>{{ post.title }}</span></a>
<div class="post-date"><i>{{ post.date | date: '%B %-d, %Y' }}</i></div>
</li>
{% endfor %}
</ul>
<h2>Compiling a Lisp, the series</h2>
{% include compiling_a_lisp.md %}
<h2>Writing a Lisp, the series</h2>
{% include writing_a_lisp.md %}