blob: a14d50c554b078baed4c35ff8a2cad374c6bb508 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% 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 %}
|