aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/garden.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/garden.html')
-rw-r--r--theme/templates/garden.html27
1 files changed, 0 insertions, 27 deletions
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 %}
-<h1>Garden</h1>
-<p>Notes in various states of growth. Some are stubs, some are developed. Browse
-around.</p>
-<section>
- <h2>🪴 The Growth Stages</h2>
- <p>Instead of dates, these metadata labels show how mature a page is:</p>
- <span><strong>🌱 Seedlings:</strong> Rough notes, raw ideas, or "half-baked"
- thoughts.</span><br>
- <span><strong>🌿 Budding:</strong> Notes that have some structure and a few
- internal links.</span><br>
- <span><strong>🌳 Evergreen:</strong> High-conviction ideas that are
- well-researched and stable.</span><br>
- <span><strong>🍂 Compost:</strong> Ideas you no longer agree with but want to
- keep for historical context.</span><br><br>
-</section>
-<ul>
- {% for post in posts %}
- <li>
- <a href='{{ url_for("garden", slug=post.slug) }}'>{{ post.title }}</a>
- {% if post.description %}
- <span>{{ post.description }}</span>
- {% endif %}
- </li>
- {% endfor %}
-</ul>
-{% endblock %}