2021-10-24 23:59:35 +11:00
|
|
|
from django.urls import path, re_path, include
|
2021-09-18 21:37:18 +10:00
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns=[
|
|
|
|
path('',views.index,name='idex'),
|
|
|
|
path('contact',views.contact,name='contact'),
|
|
|
|
path('specs',views.specs,name='specs'),
|
|
|
|
path('songs',views.songs,name='songs'),
|
|
|
|
path('nerdshope',views.nerdshope,name='shop'),
|
|
|
|
path('teapot',views.teapot,name='teapot'),
|
|
|
|
path('toask',views.articles,name='articles'),
|
2021-10-10 00:38:28 +11:00
|
|
|
re_path('r/(.*)',views.redirect,name='redirect'),
|
2021-09-18 21:37:18 +10:00
|
|
|
path('md.rss',views.md,name='md'),
|
2021-11-10 02:45:32 +11:00
|
|
|
path('me.vcf',views.vcard,name='vcard'),
|
2021-10-10 00:38:28 +11:00
|
|
|
re_path('(.*)',views.autopage,name='everything'),
|
2021-09-18 21:37:18 +10:00
|
|
|
]
|