{% extends "base.html" %} {% set page_title = "Orchid Continuum Widgets" %} {% block content %}

Orchid Continuum Widgets

Embeddable widgets for integrating orchid data into external websites, including Neon One webpages.

{% for widget_id, widget_name in widget_types.items() %}
{{ widget_name }}

{% if widget_id == 'gallery' %} Display a grid of orchid photos with names and basic information. Perfect for showcasing your collection. {% elif widget_id == 'search' %} Interactive search widget allowing visitors to search for specific orchids by name, genus, or species. {% elif widget_id == 'featured' %} Showcase a single featured orchid with detailed information and attractive styling. {% elif widget_id == 'comparison' %} Side-by-side comparison tool for analyzing orchid similarities and differences. {% elif widget_id == 'citation' %} Generate proper academic citations for research and educational use. {% elif widget_id == 'identifier' %} AI-powered orchid identification tool for uploaded photos. {% elif widget_id == 'mission' %} Display the Five Cities Orchid Society mission and support information. {% elif widget_id == 'map' %} Interactive world map showing orchid locations and geographic distribution. {% elif widget_id == 'weather' %} Compare local weather to native orchid habitat conditions with growing advice. {% elif widget_id == 'enhanced_globe' %} Interactive 3D Earth globe with solar activity and country-specific orchid exploration. {% elif widget_id == 'trivia' %} Test your orchid knowledge with fun trivia questions using real photos from the Five Cities collection. {% elif widget_id == 'mahjong' %} Relaxing Mahjong-style game featuring beautiful orchid photos and matching gameplay. {% elif widget_id == 'orchid_explorer_pro' %} Combined geographic explorer with interactive globe, world map, weather comparison, and climate analysis tools. {% elif widget_id == 'discovery_center' %} Unified search hub combining gallery browsing, AI identification, featured orchids, and advanced search capabilities. {% elif widget_id == 'learning_games' %} Multi-game educational suite with trivia challenges, Mahjong matching, memory games, and expert quizzes. {% elif widget_id == 'research_hub' %} Professional research toolkit with side-by-side comparison, citation generator, statistical analysis, and data export. {% endif %}

{% endfor %}
Quick Integration Guide
1. Choose Your Widget

Select the widget type that best fits your needs from the gallery above.

2. Get Integration Code

Click "Get Code" to receive the HTML embed code for your chosen widget.

3. Embed in Your Site

Copy and paste the provided iframe code into your Neon One webpage.

Example Embed Code:
<iframe 
    src="https://your-orchid-site.com/widgets/embed/gallery"
    width="100%" 
    height="400"
    frameborder="0"
    scrolling="no">
</iframe>
Customization Options:
  • Add ?genus=Cattleya to filter by genus
  • Add ?limit=8 to change number of items
  • Modify width and height as needed
API Endpoints for Custom Integration

For advanced integrations, use these JSON API endpoints:

Gallery Data
/widgets/api/gallery?limit=6
Search Data
/widgets/api/search?query=cattleya
Featured Orchid
/widgets/api/featured
Weather Widget
/widgets/api/weather?zip=93401
Comparison Data
/widgets/api/comparison
All API endpoints return JSON data that can be consumed by your own JavaScript applications.
Orchid Weather Comparison Widget
Mobile-Optimized Design

Responsive widget under 300px width, perfect for sidebars and mobile displays.

Climate Comparison

Compares local weather to your orchids' native habitats with color-coded indicators.

Personalized Collection

Shows weather advice for your specific orchid collection when logged in.

Embed Code:
<iframe 
    src="YOUR_DOMAIN/widgets/embed/weather"
    width="300" 
    height="350"
    frameborder="0">
</iframe>
{% endblock %}