{# Chooser - include the right background based on user preference. Valid: none, balls, wave, stars, drip #} {% set _bg = (effective_appearance.background_style if effective_appearance and effective_appearance.background_style else 'balls') %} {% if _bg == 'none' %} {% include 'backgrounds/none.html' %} {% elif _bg == 'wave' %} {% include 'backgrounds/wave.html' %} {% elif _bg == 'stars' %} {% include 'backgrounds/stars.html' %} {% elif _bg == 'drip' %} {% include 'backgrounds/drip.html' %} {% else %} {% include 'backgrounds/balls.html' %} {% endif %}