{% extends "base.html" %} {% block title %} Title from child template {% endblock %} {% block content %} {% if now %}

Current date and time is {{ now }}

{% else %}

now variable is not available

{% endif %}

Current scheme: {{ request.scheme }}

BASE_DIR : {{ base_dir }}

{% endblock %} {% block footer %} {{ block.super }}

All rights reserved

{% endblock %}