{% extends 'thecommunity/base.html' %} {% load cache %} {% block no_follow %} {% endblock %} {% block js %} {% endblock %} {% block page_body %}
{% if not user.is_authenticated %}

We're making the world's information easier to understand, visualize and share!

{% endif %}

What's Trending?

    {% for insight in trending_insights %}
  • {% include 'thecommunity/shared/insight_image_crop.html' with width=115 height=76 insight=insight %}
  • {% endfor %}

Recent Insights

    {% for insight in recent_challenges %}
  • {% include 'thecommunity/shared/insight_image_crop.html' with width=115 height=76 insight=insight %}
  • {% endfor %}
{% if feature_enablement.browse_by_category == 'enabled' %}

Discover Insights By Category

{% include 'thecommunity/community_page/category_list.html' with category_list=category_list_1 %}
{% include 'thecommunity/community_page/category_list.html' with category_list=category_list_2 %}
{% endif %}
{% if user.is_authenticated %} {% include 'thecommunity/community_page/sidebar_logged_in.html' %} {% else %} {% include 'thecommunity/community_page/sidebar_logged_out.html' %} {% endif %}
{% endblock %}