{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{% if community.header_image() != '' %}

{{ community.title }}

{% else %}

{{ community.title }}

{% endif %}
{% if current_user.subscribed(community) %} {{ _('Unsubscribe') }} {% else %} {{ _('Subscribe') }} {% endif %}

About community

{{ community.description|safe }}
{% endblock %}