{% extends "base.html" %} {% block title %}Knowledge Base - The Orchid Continuum{% endblock %} {% block content %}

Orchid Knowledge Base

Comprehensive educational resources for orchid enthusiasts of all levels

{{ stats.total_entries or 0 }}

Entries

{{ stats.categories or 0 }}

Categories

{{ stats.difficulty_counts.beginner + stats.difficulty_counts.intermediate + stats.difficulty_counts.advanced }}

Topics
{% if entries %} {% for entry in entries %}
{% if entry.content_type == 'qa' %} {% else %} {% endif %} {% if entry.difficulty_level == 'beginner' %} Beginner {% elif entry.difficulty_level == 'intermediate' %} Intermediate {% else %} Advanced {% endif %}
{{ entry.content_type.upper() }}
{{ entry.title }}
{% if entry.question %}

{{ entry.question }}

{% endif %}

{% if entry.answer %} {{ entry.answer[:200] }}{% if entry.answer|length > 200 %}...{% endif %} {% elif entry.article %} {{ entry.article[:200] }}{% if entry.article|length > 200 %}...{% endif %} {% endif %}

{{ entry.category }}
{% if entry.keywords %}
{% for keyword in entry.keywords[:3] %} {{ keyword }} {% endfor %} {% if entry.keywords|length > 3 %} +{{ entry.keywords|length - 3 }} more {% endif %}
{% endif %}
{% endfor %} {% else %}

No results found

{% if search_query or category_filter or difficulty_filter or content_type_filter %} Try adjusting your search criteria or filters. {% else %} The knowledge base is being populated. Check back soon! {% endif %}

View All Entries
{% endif %}
{% endblock %}