basic views for rest of pages
This commit is contained in:
parent
5e7d09359e
commit
27c6e25bfd
|
@ -3,3 +3,21 @@ from django.shortcuts import render_to_response
|
||||||
|
|
||||||
def home(request):
|
def home(request):
|
||||||
return render_to_response("home.html", {})
|
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", {})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user