{% if request.endpoint != 'main.login' %}
{% if request.endpoint == 'main.dashboard' %}
Welcome to Dashboard
{% endif %}
Change to dark theme
{% if 'user' in session %}
You are logged in as {{ session['user'] }}
Logout
{% endif %}
{% endif %}
{% block content %}{% endblock %}