basic views for rest of pages

This commit is contained in:
Sanj 2011-09-29 00:26:30 +05:30
parent 5e7d09359e
commit 27c6e25bfd

View File

@ -3,3 +3,21 @@ from django.shortcuts import render_to_response
def home(request):
return render_to_response("home.html", {})
def profile(request):
return render_to_response("profile.html", {})
def projects(request):
return render_to_response("projects.html", {})
def jobs(request):
return render_to_response("jobs.html", {})
def contact(request):
return render_to_response("contact.html", {})
def links(request):
return render_to_response("links.html", {})
def noteworthy(request):
return render_to_response("noteworthy.html", {})