from django.shortcuts import render


# Create your views here.
def home(request):
    return render(request,'index.html')

def about(request):
    return render(request,'about.html')

def agriculture(request):
    return render(request,'agriculture.html')

def infrastructure(request):
    return render(request,'infrastructure.html')

def economy(request):
    return render(request,'economy.html')

def contact(request):
    return render(request,'contact.html')

def education(request):
    return render(request,'education.html')

def millbazaar(request):
    return render(request,'mill-bazaar.html')
