{% endblock %}
{# Show the most popular groups if the show_most_popular_groups config setting
is True, otherwise call the super block. #}
{% block featured_organization %}
{% if h.example_theme_show_most_popular_groups() %}
{% snippet 'snippets/example_theme_most_popular_groups.html' %}
{% else %}
{{ super() }}
{% endif %}
{% endblock %}