13 lines
206 B
Python
13 lines
206 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Homepage views.
|
|
"""
|
|
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
"""
|
|
The main index page.
|
|
"""
|
|
context = {}
|
|
return render(request, 'homepage/index.html', context)
|