{% extends 'layout.html' %} {% load humanize %} {% load bookwyrm_tags %} {% block content %}

{{ site.name }}

{{ site.instance_tagline }}

{% include 'discover/icons.html' %}
{% include 'snippets/about.html' %}
{% if not request.user.is_authenticated %}
{% if site.allow_registration %}

Join {{ site.name }}

{% include 'snippets/register_form.html' %}
{% else %}

This instance is closed

{{ site.registration_closed_text | safe}}

{% endif %}
{% else %}

Your Account

{% if user.summary %} {{ user.summary | to_markdown | safe }} {% endif %}
{% endif %}
{% block panel %}{% endblock %} {% endblock %}