from django.shortcuts import render from django.http import HttpResponse def index(request): return HttpResponse("Startseite") def posts(request): return HttpResponse("Posts") # Create your views here.