{% extends 'layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% block title %}{% trans "Welcome" %}{% endblock %} {% block content %}

{{ site.name }}

{{ site.instance_tagline }}

{% trans "Decentralized" %}

{% trans "Friendly" %}

{% trans "Anti-Corporate" %}

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

{% blocktrans with name=site.name %}Join {{ name }}{% endblocktrans %}

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

{% trans "This instance is closed" %}

{{ site.registration_closed_text | safe}}

{% endif %}
{% else %}

{% trans "Your Account" %}

{% include 'user/user_preview.html' with user=request.user %}
{% if request.user.summary %} {{ request.user.summary | to_markdown | safe }} {% endif %}
{% endif %}
{% block panel %}{% endblock %} {% endblock %}