cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

main: content/templates/garden.html · raw

 1{# The garden index at /garden/.
 2   Notes are listed by title and description rather than by date. #}
 3{% extends "base.html" %}
 4{% block main %}
 5<h1>{{ page.title }}</h1>
 6<p>Notes in various states of growth. Some are stubs, some are developed. Browse
 7around.</p>
 8<section>
 9<h2>&#129716; The Growth Stages</h2>
10<p>Instead of dates, these metadata labels show how mature a page is:</p>
11<span><strong>&#127793; Seedlings:</strong> Rough notes, raw ideas, or "half-baked"
12thoughts.</span><br>
13<span><strong>&#127807; Budding:</strong> Notes that have some structure and a few
14internal links.</span><br>
15<span><strong>&#127795; Evergreen:</strong> High-conviction ideas that are
16well-researched and stable.</span><br>
17<span><strong>&#127810; Compost:</strong> Ideas you no longer agree with but want to
18keep for historical context.</span><br><br>
19</section>
20<ul>
21{%- for entry in pages %}
22<li>
23<a href="{{ root }}{{ entry.url }}">{{ entry.title }}</a>
24{%- if entry.excerpt %}
25<span>{{ entry.excerpt }}</span>
26{%- endif %}
27</li>
28{%- endfor %}
29</ul>
30{% endblock %}