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, 9 insertions, 9 deletions
diff --git a/theme/templates/garden.html b/theme/templates/garden.html
index 79238f5..c546078 100644
--- a/theme/templates/garden.html
+++ b/theme/templates/garden.html
@@ -14,14 +14,14 @@ around.</p>
<span><strong>🍂 Compost:</strong> Ideas you no longer agree with but want to
keep for historical context.</span><br><br>
</section>
-<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>
+ {% 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 %}