Remove deprecated URLs
Some URLs stem from the previous version of my website. Since those links are no longer available (and their respective views have been deleted), the URLs are no longer necessary.
- Author
- Maarten Vangeneugden
- Date
- Oct. 19, 2017, 6:17 p.m.
- Hash
- 60fb4a672392d09436ae607eabf6ddee74e3b47e
- Parent
- 1c3c61afc92feea39bd6c8f6fd3c86ee4969a801
- Modified file
- urls.py
urls.py ¶
0 additions and 7 deletions.
View changes Hide changes
1 |
1 |
|
2 |
2 |
from . import views # Imports the views from the same directory (which is views.py). |
3 |
3 |
|
4 |
4 |
urlpatterns = [ |
5 |
5 |
url(r'^$', views.index, name='about-index'), |
6 |
6 |
url(r'^myself$', views.myself, name='main-myself'), |
7 |
- | url(r'^principles$', views.principles, name='about-principles'), |
8 |
- | url(r'^hacking$', views.hacking, name='about-hacking'), |
9 |
- | url(r'^me$', views.me, name='about-me'), |
10 |
7 |
url(r'^webstack$', views.webstack, name='about-webstack'), |
11 |
- | url(r'^software$', views.software, name='about-software'), |
12 |
- | url(r'^security$', views.security, name='about-security'), |
13 |
- | url(r'^roadmap$', views.roadmap, name='about-roadmap'), |
14 |
- | ] |
15 |
8 |