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.html18
1 files changed, 18 insertions, 0 deletions
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 %}