Try using extends, not include. Templates are created using the first variant. Include just brings the whole html over your second one.
extends
include
{% extends "base.html" %} {% load static %} {% block content %} <p> body </p> {% endblock content %}