summaryrefslogtreecommitdiff
path: root/apps/home/views.py
blob: 714ba06fbe0584c751ab661c1e449b39a695bebe (plain)
1
2
3
4
5
6
7
from django.shortcuts import render


def index(request):
    context = {}
    return render(request, 'index.html', context)