{% extends "base.html" %} {% block content %} {% if current_user.is_anonymous %}

Hello, stranger!

{% else %}

Hi, {{ current_user.username }}!

{% endif %} {% endblock %}