{% if active == "home" %}
- Home
{% else %}
- Home
{% endif %}
{% if not user.is_authenticated %}
{% if active == "register" %}
- Login/Register
{% else %}
- Login/Register
{% endif %}
{% endif %}
{% if user.is_authenticated %}
{% if active == "profile" %}
- Profile
{% else %}
- Profile
{% endif %}
{% endif %}
{% if not user.is_authenticated %}
{% if active == "create" %}
- Create
{% else %}
- Create
{% endif %}
{% endif %}
{% if user.is_authenticated %}
{% if active == "create" %}
- Create
{% else %}
- Create
{% endif %}
{% endif %}
{% if user.is_authenticated %}
- Logout
{% endif %}