{% extends "demonstration/inheritance/base.html" %}
{% load static %} {# The load tag enables template tags from other Django apps #}
{% block title %}Inherited page{{ block.super }}{% endblock title %}
{% block body %}
Change body block from the original in the overridden block.
{% endblock body %}