summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2014-06-24 12:05:46 -0400
committerluxagraf <sng@luxagraf.net>2014-06-24 12:05:46 -0400
commitcc70aa809252899dfd062feb241aaecede66bd02 (patch)
treeed0468f58a240d1c46d7532eddb3c40e455ee4ff /config
parent78d265997ac26aecfb350ccf497ec2de3f3fad4b (diff)
Rewrote all sass and reconfigured HTML to use more microformats and
clearer class names
Diffstat (limited to 'config')
-rw-r--r--config/base_urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index dd3ca2e..dbf7727 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -48,7 +48,8 @@ urlpatterns += patterns('',
(r'^writing/', include('blog.urls')),
(r'^projects/', include('projects.urls')),
#Entry detail i.e. /year/month/day/my-title/
- (r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'blog.views.entry_detail'),
+ #old: (r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'blog.views.entry_detail'),
+ (r'(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+)$', 'blog.views.entry_detail'),
# locations
(r'^locations/', include('locations.urls')),
(r'^photos/', include('photos.urls')),