from django.shortcuts import render

# Create your views here.

def index(request):
    return render(request, "home.html", {
        "page": "index"
    })

def online(request):
    return render(request, "online.html", {
        "page": "online"
    })

def apply(request):
    return render(request, "apply.html", {
        "page": "apply"
    })

def map(request):
    return render(request, "map.html", {
        "page": "map"
    })

def contact(request):
    return render(request, "contact.html", {
        "page": "contact"
    })
