{% extends "root.html" %} {% block head %} My communities - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav(selected="communities") }}
{% if user -%}
{{ text "communities:label.create_new" }}
{% if list|length >= 4 -%} {{ components::supporter_ad(body="Become a supporter to create up to 10 communities!") }} {%- endif %} {%- endif %}
{{ icon "award" }} {{ text "communities:label.my_communities" }}
{{ icon "search" }} {{ text "communities:label.join_new" }}
{% for item in list %} {{ components::community_listing_card(community=item) }} {% endfor %}
{{ icon "trending-up" }} {{ text "communities:label.popular_communities" }}
{% for item in popular_list %} {{ components::community_listing_card(community=item) }} {% endfor %}
{% endblock %}