{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% block app_content %}

{{ _('About %(site_name)s', site_name=g.site.name) }}

{{g.site.name}} is a pyfedi instance created on {{instance.created_at.strftime('%d-%m-%Y')}}. It is home to {{user_amount}} users (of which {{mau}} active in the last month). In the {{community_amount}} communities we discussed {{domains_amount}} domains and made {{posts_amount}} posts.

Team

This instance is administerred by {% for admin in admins %}{{ admin.user_name }}{{ ", " if not loop.last }}{% endfor %}.

It is moderated by {% for s in staff %}{{ s.user_name }}{{ ", " if not loop.last }}{% endfor %}.

Contact

{{g.site.contact_email | safe }}

About Us

{{g.site.description | safe }}

{{g.site.sidebar | safe }}

{% if g.site.legal_information %}

Legal Information

{{g.site.legal_information | safe }}

Our Privacy Policy

{% endif %}
{% endblock %}