Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 923 Bytes

blog.md

File metadata and controls

34 lines (30 loc) · 923 Bytes
title layout blog_index permalink
Blog
page
true
blog/
    {% for post in site.posts %} {% unless post.draft == true or post.series %}
  • {{ post.title }}
    {{ post.date | date: '%B %-d, %Y' }}
  • {% endunless %} {% endfor %}

Runtime optimization, the series

    {% assign posts_chrono = site.posts | where: "series","runtime-opt" | reverse %} {% for post in posts_chrono %}
  • {{ post.title }}
    {{ post.date | date: '%B %-d, %Y' }}
  • {% endfor %}

Compiling a Lisp, the series

{% include compiling_a_lisp.md %}

Writing a Lisp, the series

{% include writing_a_lisp.md %}