From 2601873a0da273769420e48d23221ebf8b600fe2 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 21 Feb 2026 13:53:14 -0600 Subject: add /garden section to site (#5) * publish new post: automating-weblorg-deployments * fix publish.el comments * allow for case-insensitive env variable * obfuscate port * update run rules * update run rules * allow for case-insensitive env variable * publish new post: automating-weblorg-deployments * add /garden section to site --- theme/static/styles.css | 2 ++ theme/templates/base.html | 1 + theme/templates/garden.html | 18 ++++++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 theme/templates/garden.html (limited to 'theme') diff --git a/theme/static/styles.css b/theme/static/styles.css index 7029e9e..37c3e4f 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -135,6 +135,8 @@ img:hover { filter: grayscale(0); } gap: 0.5rem; } +/* -- Garden -- */ + /* Style the footnote number to be a fixed width for alignment */ .footnum { font-weight: bold; diff --git a/theme/templates/base.html b/theme/templates/base.html index 9f1c48e..3a2ff79 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -23,6 +23,7 @@
  • Home
  • About
  • Blog
  • +
  • Garden
  • Services
  • diff --git a/theme/templates/garden.html b/theme/templates/garden.html new file mode 100644 index 0000000..dda3884 --- /dev/null +++ b/theme/templates/garden.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} {% block subtitle %}Garden | {% endblock %} {% block main %} +

    Garden

    +

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

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