from django.shortcuts import render


def index(request):
    return render(request, "site_core/index.html")


def codelab(request):
    return render(request, "site_core/codelab.html")


def contact(request):
    return render(request, "site_core/contact.html")