from django.conf.urls import url from .views import index urlpatterns = [ url(r'^$', index, name='comixify_index'), ]