Added alplora and datacenter beta program

This commit is contained in:
Levi 2017-02-14 23:34:06 -05:00
commit ea2f6444db
152 changed files with 20967 additions and 160 deletions

10
alplora/urls.py Normal file
View file

@ -0,0 +1,10 @@
from django.conf.urls import url
from .views import IndexView
urlpatterns = [
url(r'^/?$', IndexView.as_view(), name='index'),
# url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
# url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
]