diff options
Diffstat (limited to 'content/templates/garden.html')
| -rw-r--r-- | content/templates/garden.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/content/templates/garden.html b/content/templates/garden.html new file mode 100644 index 0000000..9d21248 --- /dev/null +++ b/content/templates/garden.html @@ -0,0 +1,30 @@ +{# The garden index at /garden/, mirroring theme/templates/garden.html. + Notes are listed by title and description rather than by date. #} +{% extends "base.html" %} +{% block main %} +<h1>{{ page.title }}</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 entry in pages %} +<li> +<a href="{{ root }}{{ entry.url }}">{{ entry.title }}</a> +{%- if entry.excerpt %} +<span>{{ entry.excerpt }}</span> +{%- endif %} +</li> +{%- endfor %} +</ul> +{% endblock %} |
