1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-24 21:45:08 +00:00
2010-11-04 12:43:53 +00:00

9 lines
193 B
Python

from django.shortcuts import render_to_response
import settings
def index(request):
return render_to_response('index.html', {
'title': settings.SITE_NAME,
'domain': settings.DOMAIN,
})