def blog(request):
return render(request, 'base.html', context={})
<body>
{% block contant %}
Место для постов
{% endblock contant %}
</body>
{% extends "base.html" %}
{% block contant %}
Сами посты
{% endblock contant %}
, но наследования нет. Полный проект