aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/garden.html
blob: dda3884e0f8d39d34edd559a39be5b7dad8752f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 %}