4👍
✅
You rendered the layout instead of the actual template. Your view should be:
from django.shortcuts import render
def index(request):
return render(request, 'personal/content.html')
Source:stackexchange.com