summaryrefslogtreecommitdiff
path: root/website/urls.py
blob: b8e244fcf65fd9978f052651b3f802e8d15d38cd (plain)
1
2
3
4
5
6
7
8
9
10
from django.conf.urls import  include, url, re_path
from .views import dispatcher
from . import views
app_name = 'website'
urlpatterns = [

    # Main pages dispatcher
    re_path(r'^$', dispatcher, name="home"),
    re_path(r'^(?P<permalink>.+)/$', dispatcher, name="dispatcher"),
]