diff options
author | luxagraf <sng@luxagraf.net> | 2015-10-31 21:14:08 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-10-31 21:14:08 -0400 |
commit | 0d26984b8f8ba1d51e58367e1b2ce42a062c1e85 (patch) | |
tree | f7763324e5dc9c81719967f36797df56f67e9386 /config | |
parent | f00a7a4cd1e1e22412fd34d3977ff22c92ee681b (diff) |
added src to sitemap and fixed a url error in location sitemap. whoops.
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 9485a5b..83880fc 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -7,6 +7,7 @@ from blog.models import BlogSitemap, LatestFull from locations.models import WritingbyCountrySitemap from links.models import LatestLinks from photos.models import PhotoGallerySitemap +from src.models import SrcSitemap from projects.models.base import ProjectSitemap admin.autodiscover() @@ -16,7 +17,8 @@ sitemaps = { 'blog': BlogSitemap, 'writingbyloc': WritingbyCountrySitemap, 'photos': PhotoGallerySitemap, - 'projects': ProjectSitemap + 'projects': ProjectSitemap, + 'src': SrcSitemap } feeds = { 'writing': LatestFull, @@ -60,6 +62,7 @@ urlpatterns += patterns('', (r'^birds/', include('birds.urls')), (r'^travel-guide/', include('guide.urls')), (r'^src/', include('src.urls')), + (r'^figments/', include('figments.urls')), # map (r'^map/', include('locations.urls')), #about |