{% load static %}
{% block scripts %} {% endblock scripts %}
{% include 'main/messages.html' %}
{% if user.is_authenticated %}
Home
{{ user.username }}
Log Out
{% else %}
Home
Log In
Sign Up
{% endif %}
{% block content %} {% endblock %} {% if user.is_authenticated %} {% block loggedin %} {% endblock %} {% else %} {% block notloggin %} {% endblock %} {% endif %}