aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-02-21 13:53:14 -0600
committerGitHub <[email protected]>2026-02-21 13:53:14 -0600
commit2601873a0da273769420e48d23221ebf8b600fe2 (patch)
tree70e204c47539d46cb1ca2ac4bab71b57d815f58e /theme/templates
parente136d6671654561ac24fa98792442829339a639e (diff)
downloadcleberg.net-2601873a0da273769420e48d23221ebf8b600fe2.tar.gz
cleberg.net-2601873a0da273769420e48d23221ebf8b600fe2.tar.bz2
cleberg.net-2601873a0da273769420e48d23221ebf8b600fe2.zip
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
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/base.html1
-rw-r--r--theme/templates/garden.html18
2 files changed, 19 insertions, 0 deletions
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 @@
<li><a href="/">Home</a></li>
<li><a href="/about/">About</a></li>
<li><a href="/blog/">Blog</a></li>
+ <li><a href="/garden/">Garden</a></li>
<li><a href="/services/">Services</a></li>
</ul>
</nav>
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 %}
+<h1>Garden</h1>
+<p>
+ Notes in various states of growth. Some are stubs, some are developed.
+ Browse around.
+</p>
+<br>
+<ul class="garden-index">
+{% for post in posts %}
+<li>
+ <a href='{{ url_for("garden", slug=post.slug) }}'>{{ post.title }}</a>
+ {% if post.description %}
+ <span class="garden-desc">{{ post.description }}</span>
+ {% endif %}
+</li>
+{% endfor %}
+</ul>
+{% endblock %}