lemoncurry/home/urls.py

10 lines
193 B
Python
Raw Normal View History

2017-10-22 18:37:24 -04:00
from django.conf.urls import url
from . import views
app_name = 'home'
urlpatterns = [
url(r'^$', views.index, name='index'),
2017-10-31 00:10:13 -04:00
url(r'^robots.txt$', views.robots, name='robots.txt'),
2017-10-22 18:37:24 -04:00
]