Skip to content

Instantly share code, notes, and snippets.

@victorono
Created February 10, 2014 19:24
Show Gist options
  • Save victorono/8922417 to your computer and use it in GitHub Desktop.
Save victorono/8922417 to your computer and use it in GitHub Desktop.
Robots in django
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.views.generic import TemplateView
urlpatterns += patterns('',
url(r'^robots\.txt$', TemplateView.as_view(template_name='robots.txt', content_type='text/plain')),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment