hello
This is a placeholder so the blog has something in it. Delete this file whenever you want — everything still works with an empty _posts/ folder.
Writing a post
Add a file to _posts/ named YYYY-MM-DD-slug.md. The front matter above is the full set of knobs worth knowing:
| Field | What it does |
|---|---|
title | Shown on the blog list and at the top of the post |
date | Drives the URL, ordering, and the year archive. Posts dated in the future aren’t published |
description | One-line blurb under the title in the blog list |
tags / categories | Space-separated. Each gets its own archive page at /blog/tag/<name>/ and /blog/category/<name>/ |
featured | true pins the post to a card at the top of the blog page |
related_posts | false hides the “related posts” strip at the bottom |
Math works out of the box via MathJax — \(e^{i\pi} + 1 = 0\) inline, or as a display block:
\[\hat{V}(s) = \sum_{s'} M(s, s') R(s')\]Code blocks get syntax highlighting and a copy button:
import numpy as np
def successor_representation(T, gamma):
return np.linalg.inv(np.eye(len(T)) - gamma * T)
Making the blog public
The blog is live at /blog/ but deliberately unlinked. To surface it in the navbar, open _pages/blog.md and set nav: true. To also list recent posts on the homepage, uncomment the latest_posts block in _pages/about.md.