{% if theme %}
{% if standalone_page %} {% endif %}

{{ theme.theme }} {% if diagnostics and yaml_available %} (YAML) {% endif %}

{% if theme.description %}

{{ theme.description }}

{% else %} {% if theme.synergies %}

Built around {{ theme.synergies[:6]|join(', ') }}.

{% else %}

No description.

{% endif %} {% endif %}
{% if show_theme_popularity_badges and theme.popularity_bucket %}{{ theme.popularity_bucket }}{% endif %} {% if show_theme_quality_badges and theme.quality_tier %}{{ theme.quality_tier }}{% endif %} {% if show_theme_pool_badges and theme.pool_tier %}{{ theme.pool_tier }}{% endif %} {% if diagnostics and theme.editorial_quality %}{{ theme.editorial_quality }}{% endif %} {% if diagnostics and theme.has_fallback_description %}Fallback{% endif %}
{% if (show_theme_quality_badges and theme.quality_tier) or (show_theme_pool_badges and theme.pool_tier) or (show_theme_popularity_badges and theme.popularity_bucket) %}
ℹ️ Badge Details
{% if show_theme_quality_badges and theme.quality_tier %}
{{ theme.quality_tier }}
Quality Score: {{ (theme.quality_score * 100)|round|int }}%
    {% if theme.quality_score >= 0.70 %}
  • High card count and unique synergies ({{ theme.synergy_count }} synergies)
  • {% elif theme.quality_score >= 0.60 %}
  • Good card selection with {{ theme.synergy_count }} documented synergies
  • {% elif theme.quality_score >= 0.40 %}
  • Moderate card pool with {{ theme.synergy_count }} synergies
  • {% else %}
  • Limited card pool and synergies ({{ theme.synergy_count }} synergies)
  • {% endif %} {% if theme.has_fallback_description %}
  • Auto-generated description (could benefit from custom curation)
  • {% else %}
  • Custom curated description
  • {% endif %} {% if theme.curated_synergies or theme.enforced_synergies or theme.inferred_synergies %}
  • Synergy breakdown: {{ theme.curated_synergies|length }} curated, {{ theme.enforced_synergies|length }} enforced, {{ theme.inferred_synergies|length }} inferred
  • {% else %}
  • No synergy breakdown available
  • {% endif %} {% if theme.deck_archetype %}
  • Deck archetype: {{ theme.deck_archetype }}
  • {% else %}
  • No deck archetype classification
  • {% endif %} {% if theme.editorial_quality == 'final' %}
  • Fully reviewed and curated (editorial status: final)
  • {% elif theme.editorial_quality == 'refined' %}
  • Reviewed and refined (editorial status: refined)
  • {% elif theme.editorial_quality == 'draft' %}
  • Draft quality (editorial status: draft)
  • {% elif theme.editorial_quality == 'auto' %}
  • Auto-generated content (editorial status: auto)
  • {% endif %}
{% endif %} {% if show_theme_pool_badges and theme.pool_tier %}
{{ theme.pool_tier }}
Card Pool Size: ~{{ theme.pool_size }} cards available
    {% if theme.pool_tier == 'Vast' %}
  • Extensive card selection with {{ theme.pool_size }}+ cards available for deckbuilding
  • Provides maximum flexibility and optimization potential
  • {% elif theme.pool_tier == 'Large' %}
  • Large card selection with {{ theme.pool_size }} cards available
  • Offers strong flexibility for different deck strategies
  • {% elif theme.pool_tier == 'Moderate' %}
  • Moderate selection with {{ theme.pool_size }} cards available
  • Sufficient options for focused deck strategies
  • {% elif theme.pool_tier == 'Small' %}
  • Limited selection with {{ theme.pool_size }} cards available
  • May require creative deckbuilding approaches
  • {% elif theme.pool_tier == 'Tiny' %}
  • Very limited pool with only {{ theme.pool_size }} cards available
  • Highly focused niche theme with restricted card choices
  • {% endif %}
{% endif %} {% if show_theme_popularity_badges and theme.popularity_bucket %}
{{ theme.popularity_bucket }}
Theme Popularity: {{ theme.popularity_bucket }}
    {% if theme.popularity_bucket == 'Very Common' %}
  • Extremely popular theme seen in many commander decks
  • High adoption rate across diverse commanders and strategies
  • Well-established with extensive community support and resources
  • {% elif theme.popularity_bucket == 'Common' %}
  • Popular theme frequently used in commander deckbuilding
  • Strong adoption rate with good community support
  • Well-documented strategies and card synergies available
  • {% elif theme.popularity_bucket == 'Uncommon' %}
  • Moderately popular theme with regular usage
  • Decent adoption rate, particularly in specific archetypes
  • Some community resources and discussion available
  • {% elif theme.popularity_bucket == 'Niche' %}
  • Specialized theme with limited but dedicated following
  • Lower adoption rate, often used in specific deck strategies
  • May require more research to optimize effectively
  • {% elif theme.popularity_bucket == 'Rare' %}
  • Rarely used theme with minimal adoption
  • Very low usage rate across commander decks
  • May offer unique deckbuilding opportunities for brewers
  • {% endif %}
{% endif %}
{% endif %}

Synergies {% if not uncapped %}(capped){% endif %}

{% for s in theme.synergies %}{{ s }}{% endfor %}
{% if diagnostics %} {% if not uncapped and theme.uncapped_synergies %} {% elif uncapped %} {% if theme.uncapped_synergies %}
{% for s in theme.uncapped_synergies %}{{ s }}{% endfor %}
{% endif %} {% endif %} {% endif %}

Example Cards

{% if theme.example_cards %} {% for c in theme.example_cards %} {% set base_c = (c.split(' - Synergy (')[0] if ' - Synergy (' in c else c) %}
{{ c }} image
{{ c }}
{% endfor %} {% else %}
No curated example cards.
{% endif %}

Example Commanders

{% if theme.example_commanders %} {% for c in theme.example_commanders %} {% set base_c = (c.split(' - Synergy (')[0] if ' - Synergy (' in c else c) %}
{{ c }} image
{{ c }}
{% endfor %} {% else %}
No curated commander examples.
{% endif %}
{% else %}
Theme not found.
{% endif %}