Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ after_dark_menu = [
{ name = "Home", url = "$BASE_URL" },
{ name = "About", url = "$BASE_URL/about/" },
{ name = "Now", url = "$BASE_URL/now/" },
{ name = "TILs", url = "$BASE_URL/tils/" },
{ name = "Tags", url = "$BASE_URL/tags" },
{ name = "Source", url = "https://github.com/sinon/sinon.github.io" },
{ name = "GitHub", url = "https://github.com/sinon" },
Expand Down
9 changes: 9 additions & 0 deletions content/tils/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = "TILs"
sort_by = "date"
paginate_by = 10
paginate_path = "page"
weight = 0
template = "section.html"
render = true
+++
10 changes: 10 additions & 0 deletions content/tils/til_about_tils_posts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "Writing more, writing TILs"
date = 2025-08-30
[taxonomies]
tags = ["til"]
+++

[Simon Willison](https://simonwillison.net/) co-creator of Django, prolific blogger and general font of knowledge on how pelicans ride bicycles in this brave new LLM world, has a section of his blog devoted to TILs.

To help make writing a more regular habit I am ~~copying~~ stealing this.
1 change: 1 addition & 0 deletions templates/section.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{% extends "after-dark/templates/index.html" %}
Loading