{% extends "base.html" %} {% block title %}{{ garden.config.title }} - {{ site_name }}{% endblock %} {% block content %}

{{ garden.config.title }}

{% if garden.config.description %}

{{ garden.config.description }}

{% endif %} {% if breadcrumbs %} {% endif %}
{% for item in items %} {% if item.type == 'directory' %} {# Content directory card #}
📁 Directory

{{ item.metadata.title }}

{% if item.metadata.description %}
{{ item.metadata.description }}
{% endif %}
→ Browse contents
{% elif item.type in ['page', 'markdown'] %} {# Page or markdown file card #}
{% if item.type == 'page' %}
📄 Page
{% endif %}

{{ item.metadata.title }}

{% if item.metadata.tags %}
{% for tag in item.metadata.tags %} {{ tag }} {% endfor %}
{% endif %}
{{ item.metadata.description or item.content|striptags|truncate(200) }}
{% endif %} {% else %}

No items in this directory yet.

{% endfor %}
{% endblock %}