{% extends 'base.html.j2' %} {% block title %}Home{% endblock %} {% block content_before %} {% if current_user.is_authenticated %} Welcome back {{ current_user.username }}! {% else %} Welcome Explorer! {% endif %} {% endblock %} {% block content %} {% if current_user.is_authenticated %} {% include 'partials/_account.html.j2' %} {% else %}
Login
{% if config.USER_ENABLE_REGISTER %}
Register
{% endif %}
{% endif %} {% endblock content %} {% block content_after %} {% if current_user.is_authenticated %}

Characters


{% for character in account_data.charinfo %} {% include 'partials/_character.html.j2' %} {% endfor %}
{% endif %} {% endblock content_after %}