{% extends "_base.html" %} {% block content %}
{% if current_user.is_authenticated %}

Welcome {{ current_user.username }}!

{% else %}

Welcome!

{% endif %}

Add some content here!

{% endblock %}