{% block title %}
Tranquillity
{% endblock %}
{% load static %}
{% block sidebar %}
Home
{% if user.is_authenticated %}
Welcome {{ user.first_name }} {{user.last_name}}
Logout
{% else %}
Login
{% endif %}
Clone the source
{% endblock %}
{% block content %}{% endblock %}