| 
									
										
										
										
											2021-09-18 21:37:18 +10:00
										 |  |  | from django.urls import path, re_path | 
					
						
							|  |  |  | from . import views | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | urlpatterns=[ | 
					
						
							|  |  |  | 	path('',views.index,name='idex'), | 
					
						
							|  |  |  | 	path('me',views.me,name='me'), | 
					
						
							|  |  |  | 	path('contact',views.contact,name='contact'), | 
					
						
							|  |  |  | 	path('specs',views.specs,name='specs'), | 
					
						
							|  |  |  | 	path('songs',views.songs,name='songs'), | 
					
						
							|  |  |  | 	path('webhost',views.host,name='webhost'), | 
					
						
							|  |  |  | 	path('free',views.free,name='free'), | 
					
						
							|  |  |  | 	path('myroids',views.myroids,name='myroids'), | 
					
						
							|  |  |  | 	path('myroids/browser',views.myroidbrowser,name='mybrowse'), | 
					
						
							|  |  |  | 	path('nerdshope',views.nerdshope,name='shop'), | 
					
						
							|  |  |  | 	path('syntax',views.syntax,name='syntaxer'), | 
					
						
							|  |  |  | 	path('teapot',views.teapot,name='teapot'), | 
					
						
							|  |  |  | 	path('toask',views.articles,name='articles'), | 
					
						
							|  |  |  | 	path('todd',views.todd,name='todd'), | 
					
						
							|  |  |  | 	re_path('r/(.*)',views.redirect,name='redirect'), | 
					
						
							|  |  |  | 	path('bikebunny',views.bikebunny,name='bikebunny'), | 
					
						
							|  |  |  | 	path('md.rss',views.md,name='md'), | 
					
						
							| 
									
										
										
										
											2021-09-21 02:39:54 +10:00
										 |  |  | 	path('todos',views.todo,name='todo'), | 
					
						
							| 
									
										
										
										
											2021-10-09 20:36:50 +11:00
										 |  |  | 	re_path('(.*)',views.autopage,name='everything'), | 
					
						
							| 
									
										
										
										
											2021-09-18 21:37:18 +10:00
										 |  |  | ] |