Index: /src/django_gheat/templates/robots.txt
===================================================================
--- /src/django_gheat/templates/robots.txt	(revision 9397)
+++ /src/django_gheat/templates/robots.txt	(revision 9397)
@@ -0,0 +1,3 @@
+User-agent: *
+Disallow: /
+
Index: /src/django_gheat/urls.py
===================================================================
--- /src/django_gheat/urls.py	(revision 9396)
+++ /src/django_gheat/urls.py	(revision 9397)
@@ -1,5 +1,6 @@
 from django.conf.urls.defaults import *
 from django.contrib.staticfiles.urls import staticfiles_urlpatterns
-from django.views.generic.simple import redirect_to
+from django.views.decorators.cache import cache_page
+from django.views.generic.simple import redirect_to, direct_to_template
 
 # Uncomment the next two lines to enable the admin:
@@ -11,4 +12,5 @@
 urlpatterns = patterns('',
     # Example:
+    (r'^robots.txt$', cache_page(60 * 15)(direct_to_template), {'template' : 'robots.txt', 'mimetype' : 'text/plain'}),
     (r'^$', redirect_to, { 'url' : 'wlheatmap/', 'permanent' : False }),
     (r'^wlheatmap/', include('wlheatmap.urls')),
