{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %}

Welcome{% if current_user.is_authenticated %}, {{ current_user.username }}{% endif %}!

{% if not current_user.is_authenticated %}

Please log in or create an account.

{% endif %} {% endblock %}