From a6ee2e0ca79b83b7f6bd4a521777cffdaf2260f2 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 11 Aug 2026 20:34:02 -0500 Subject: Finish the move off weblorg Remove what the migration left behind, then cut build.py down to the work orgo does not do: 443 lines to 168. - Delete publish.el and theme/templates/, superseded by content/orgo.toml and content/templates/. theme/static/ stays; orgo publishes it as assets. - Drop the tag builder, the org-source copy, and the helpers that only fed them. orgo generates /tags/ and a page per tag from a collection. - Rewrite the README and the migration-era comments that explained the config by pointing at what weblorg used to do. - Serve styles.css as authored. Minifying 1KB of CSS saved 52 bytes over the wire once compressed, which did not pay for a build step and a toolchain dependency. - Stop wiping the output directory. The .orgo-cache.json inside it is what makes a build incremental, and orgo already prunes outputs whose source is gone and re-emits any that are missing. Production keeps .build/ and development gets .build-dev/, because production rewrites image URLs in the output and a shared directory would let one environment reuse pages rendered for the other. An incremental build is byte-identical to a clean one, and the site output is unchanged apart from the /uses/ stack row. --- theme/templates/base.html | 46 --------------------------------------------- theme/templates/blog.html | 13 ------------- theme/templates/feed.xml | 37 ------------------------------------ theme/templates/garden.html | 27 -------------------------- theme/templates/index.html | 33 -------------------------------- theme/templates/page.html | 8 -------- theme/templates/post.html | 19 ------------------- theme/templates/tags.html | 6 ------ 8 files changed, 189 deletions(-) delete mode 100644 theme/templates/base.html delete mode 100644 theme/templates/blog.html delete mode 100644 theme/templates/feed.xml delete mode 100644 theme/templates/garden.html delete mode 100644 theme/templates/index.html delete mode 100644 theme/templates/page.html delete mode 100644 theme/templates/post.html delete mode 100644 theme/templates/tags.html (limited to 'theme/templates') diff --git a/theme/templates/base.html b/theme/templates/base.html deleted file mode 100644 index 68ff487..0000000 --- a/theme/templates/base.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - {% block head %} - - {% block subtitle %}{% endblock %}{% block title %}{{ site_name | default("cleberg.net") }}{% endblock %} - - {% if site_owner is defined %}{% endif %} - {% if site_description is defined %}{% endif %} - {% if site_keywords is defined %}{% endif %} - - - - {% block meta %}{% endblock %} - {% endblock %} - - - - - - - - - - -
- {% block main %}{% endblock %} -
- - - - diff --git a/theme/templates/blog.html b/theme/templates/blog.html deleted file mode 100644 index b2e2b72..0000000 --- a/theme/templates/blog.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} {% block subtitle %}blog - {% endblock %} {% block main %} -

Blog

-

Use ⌘ F / Ctrl F to search · RSS Feed

-

Want to browse by topic instead? Head over to the tags page.

- -{% endblock %} diff --git a/theme/templates/feed.xml b/theme/templates/feed.xml deleted file mode 100644 index 7b23994..0000000 --- a/theme/templates/feed.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - {{ site_name | default("cleberg.net") }} - - {{ url_for("index") }} - - en - {{ posts | first | getattr("date") | strftime("%a, %d %b %Y %H:%M:%S %z") }} - {{ now() | strftime("%a, %d %b %Y %H:%M:%S %z") }} - {{ meta.generator }} - {{ site_owner | default("hello@cleberg.net") }} - - {% for post in posts %} - - {{ post.title }} - {{ url_for("blog", slug=post.slug) }} - {{ post.author|default("hello@cleberg.net") }} - {{ url_for("blog", slug=post.slug) }} - {{ post.date|strftime("%a, %d %b %Y %H:%M:%S %z") }} - - - {% endfor %} - - - diff --git a/theme/templates/garden.html b/theme/templates/garden.html deleted file mode 100644 index a14d50c..0000000 --- a/theme/templates/garden.html +++ /dev/null @@ -1,27 +0,0 @@ -{% extends "base.html" %} {% block subtitle %}garden - {% endblock %} {% block main %} -

Garden

-

Notes in various states of growth. Some are stubs, some are developed. Browse -around.

-
-

ðŸŠī The Growth Stages

-

Instead of dates, these metadata labels show how mature a page is:

- ðŸŒą Seedlings: Rough notes, raw ideas, or "half-baked" - thoughts.
- ðŸŒŋ Budding: Notes that have some structure and a few - internal links.
- ðŸŒģ Evergreen: High-conviction ideas that are - well-researched and stable.
- 🍂 Compost: Ideas you no longer agree with but want to - keep for historical context.

-
- -{% endblock %} diff --git a/theme/templates/index.html b/theme/templates/index.html deleted file mode 100644 index 75fc83d..0000000 --- a/theme/templates/index.html +++ /dev/null @@ -1,33 +0,0 @@ -{% extends "base.html" %} -{% block meta %}{% endblock %} -{% block main %} -
-

Christian Cleberg

-

[ krz · audit labs ]

-

Privacy · Self-Hosting · iOS

-

I build tools, write about systems, and run my own infrastructure. Focused on privacy, user control, and long-term utility.

-

Uses · Now

-
- -
-

Recent Posts

-

Things I've written recently.

- -

All Posts →

-
- -
-

Elsewhere

-

Places to find me online.

- -
-{% endblock %} diff --git a/theme/templates/page.html b/theme/templates/page.html deleted file mode 100644 index 6c22589..0000000 --- a/theme/templates/page.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "base.html" %} -{% block subtitle %}{{ post.title }} - {% endblock %} -{% block main %} -
-

{{ post.title }}

-
{{ post.html | safe }}
-
-{% endblock %} diff --git a/theme/templates/post.html b/theme/templates/post.html deleted file mode 100644 index a2951b0..0000000 --- a/theme/templates/post.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} {% block subtitle %} {{ post.title }} - {% endblock %} -{% block meta %} - - -{% if post.description is defined %} - -{% elif project_description is defined %} - -{% endif %} -{% endblock %} -{% block main %} -
-

{{ post.title }}

-

{% if post.description is defined %} · {{ post.description }}{% endif %}

-
{{ post.html | safe }}
-
Reply via email →
-
...or, comment on this post on Bubbles!
-
-{% endblock %} diff --git a/theme/templates/tags.html b/theme/templates/tags.html deleted file mode 100644 index 83619d4..0000000 --- a/theme/templates/tags.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "base.html" %} {% block subtitle %}tags - {% endblock %} {% block main %} -

Tags

-

Browse posts by topic.

- - -{% endblock %} -- cgit v1.2.3