diff options
| author | Christian Cleberg <[email protected]> | 2026-08-11 20:34:02 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-08-11 20:34:02 -0500 |
| commit | ab149c1ae4fe38048fc2d32edac6061e7f3b4638 (patch) | |
| tree | 984019a98b20789890566c595b52d5ddc8b21064 /theme/templates/index.html | |
| parent | 5be4598b09a2685d73665b403bf80aad50b15834 (diff) | |
| download | cleberg.net-migrate-to-orgo.tar.gz cleberg.net-migrate-to-orgo.tar.bz2 cleberg.net-migrate-to-orgo.zip | |
Finish the move off weblorgmigrate-to-orgo
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.
Diffstat (limited to 'theme/templates/index.html')
| -rw-r--r-- | theme/templates/index.html | 33 |
1 files changed, 0 insertions, 33 deletions
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 %}<meta name="bubbles:fediverse" content="@[email protected]">{% endblock %} -{% block main %} -<section> - <h1>Christian Cleberg</h1> - <p>[ <a href="https://krz.sh">krz</a> · <a href="https://audit-labs.dev">audit labs</a> ]</p> - <p>Privacy · Self-Hosting · iOS</p> - <p>I build tools, write about systems, and run my own infrastructure. Focused on privacy, user control, and long-term utility.</p> - <p><a href="/uses/">Uses</a> · <a href="/now/">Now</a></p> -</section> - -<section> - <h2>Recent Posts</h2> - <p>Things I've written recently.</p> - <ul class="post-list"> - <!-- BEGIN_POSTS --><!-- END_POSTS --> - </ul> - <p><a href="/blog/">All Posts →</a></p> -</section> - -<section> - <h2>Elsewhere</h2> - <p>Places to find me online.</p> - <ul> - <li>cgit (primary): <a href="https://git.krz.sh">~cmc</a></li> - <li>GitHub (mirror): <a href="https://github.com/ccleberg">@ccleberg</a></li> - <li>Email: <a href="mailto:[email protected]">[email protected]</a> (<a href="/gpg.txt">GPG</a>)</li> - <li>Lemmy: <a href="https://r.nf/u/cmc">@cmc</a></li> - <li>Mastodon: <a href="https://c.im/@cmc">@cmc</a></li> - <li>Pixelfed: <a href="https://gram.social/cmc">@cmc</a></li> - </ul> -</section> -{% endblock %} |
