basic embed

This commit is contained in:
j 2011-01-04 11:33:00 +05:30
commit 6887d1d1e8
4 changed files with 50 additions and 0 deletions

View file

@ -22,6 +22,11 @@ def index(request):
return render_to_response('index.html', context)
def embed(request):
context = RequestContext(request, {'settings': settings})
return render_to_response('embed.html', context)
def timeline(request):
context = RequestContext(request, {'settings': settings})
return render_to_response('timeline.html', context)