<html>
<head>
<title>{% block 0 %}заголовок{% endblock %}</title>
</head>
<body>
{% block 1 %}{% endblock %}
{% block 2 %}{% endblock %}
{% block 3 %}{% endblock %}
</body>
</html>
{% extends 'autist/base.html' %}
{% block 0 %} Here is the title of about page{% endblock %}
{% block 1 %}content about page{% endblock %}
{% block 2 %}footer for about page{% endblock %}
def page_about(request):
return render(request, 'autist/about.html');