{% extends "base.html" %} {% block title %}Themed Orchid Collections - Five Cities Orchid Society{% endblock %} {% block content %}

🎨 Themed Orchid Collections

View All Orchids

Explore our orchids organized by special themes and characteristics. Each collection showcases the diversity and beauty of orchids in different categories.

{% for theme_key, theme_data in themes.items() %}
{{ theme_data.name }}

{% if theme_key == 'fragrant' %} Orchids with beautiful scents and aromatic qualities {% elif theme_key == 'miniature' %} Compact orchids perfect for small spaces {% elif theme_key == 'unusual' %} Rare and unique orchids with extraordinary characteristics {% elif theme_key == 'colorful' %} Vibrant orchids with stunning color displays {% elif theme_key == 'species' %} Pure species orchids from nature {% elif theme_key == 'hybrids' %} Modern hybrid orchids with enhanced features {% endif %}

{% endfor %}
{% endblock %}