{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% from 'bootstrap/form.html' import render_field %} {% set active_child = 'admin_site' %} {% block app_content %}

{{ _('Site profile') }}

{{ form.csrf_token() }}

{{ _('Configure the flair the instance, by giving it a name, ashort slogan, basic info for the sidebar and a logo. This information appears in link previews in social media.') }}

{{ render_field(form.name) }} {{ render_field(form.description) }} {{ render_field(form.sidebar) }}

{{ _('HTML is allowed in this field.') }}

{{ render_field(form.announcement) }}

{{ _('HTML is allowed in this field.') }}

{{ render_field(form.icon) }}

{{ _('Provide a square image, minimum 50 pixels wide but ideally 152+ pixels.') }}

{{ _('About this instance') }}

{{ _('Provide a more extensive description of the instance, set a contact address and provide legal information. This information appears on the about page.') }}

{{ render_field(form.about) }}

{{ _('HTML is allowed in this field.') }}

{{ render_field(form.legal_information) }}

{{ _('HTML is allowed in this field.') }}

{{ render_field(form.contact_email) }} {{ render_field(form.submit) }}

{% include 'admin/_nav.html' %}

{% endblock %}