{% extends "base.html" %} {% block title %}{{ config.title }}{% endblock %} {% block content %}

This site was once more complicated, but I've stripped it down to bare essentials.

{% set blog = get_section(path="blog/_index.md") %} {% for post in blog.pages %} {{ post.date }}{{ post.title }}
{% endfor %}

Reading

{% set reading = get_section(path="read/_index.md") %} {% for post in reading.pages %} {{ post.date}}{{ post.title }}
{% endfor %} {% endblock %}