mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
7 lines
161 B
Python
7 lines
161 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
"""Homepage"""
|
|
return render(request, 'main/index.html', {'title': 'Kristofers Solo Webpage'})
|