feat: add /plants page

This commit is contained in:
Jef Roosens 2025-01-24 21:49:46 +01:00
parent 18499631ea
commit dce23599ef
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
4 changed files with 51 additions and 17 deletions

View file

@ -0,0 +1,9 @@
{% import "components/plant.html" as comp_plant %}
<h1>Plants</h1>
<ul>
{% for plant in plants %}
{{ comp_plant::li(plant=plant) }}
{% endfor %}
</ul>