diff --git a/config.toml b/config.toml index 44b9c8d..99c8fe1 100644 --- a/config.toml +++ b/config.toml @@ -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" }, diff --git a/content/tils/_index.md b/content/tils/_index.md new file mode 100644 index 0000000..7e0066f --- /dev/null +++ b/content/tils/_index.md @@ -0,0 +1,9 @@ ++++ +title = "TILs" +sort_by = "date" +paginate_by = 10 +paginate_path = "page" +weight = 0 +template = "section.html" +render = true ++++ \ No newline at end of file diff --git a/content/tils/til_about_tils_posts.md b/content/tils/til_about_tils_posts.md new file mode 100644 index 0000000..7689986 --- /dev/null +++ b/content/tils/til_about_tils_posts.md @@ -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. \ No newline at end of file diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..f9b87df --- /dev/null +++ b/templates/section.html @@ -0,0 +1 @@ +{% extends "after-dark/templates/index.html" %} \ No newline at end of file