mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-21 03:30:16 -04:00
14 lines
294 B
Python
14 lines
294 B
Python
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
return render(request, "index.html")
|
|
|
|
def about(request):
|
|
return render(request, "about.html")
|
|
|
|
def resources(request):
|
|
return render(request, "resources.html")
|
|
|
|
def events(request):
|
|
return render(request, "events.html")
|