summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/builder/base.py2
-rw-r--r--design/templates/base.html6
2 files changed, 4 insertions, 4 deletions
diff --git a/app/builder/base.py b/app/builder/base.py
index c77d358..7f6f434 100644
--- a/app/builder/base.py
+++ b/app/builder/base.py
@@ -277,7 +277,7 @@ class BuildMap(Build):
'IMAGES_URL': settings.BAKED_IMAGES_URL
})
t = render_to_string('archives/map.html', c).encode('utf-8')
- self.write_file('map/', t)
+ self.write_file('map', t)
class BuildPages(Build):
diff --git a/design/templates/base.html b/design/templates/base.html
index 5c9ca21..ae6042f 100644
--- a/design/templates/base.html
+++ b/design/templates/base.html
@@ -36,10 +36,10 @@
<li id="stories"><a href="/writing/" title="An archive of writings from around the world">Writing</a></li>
<li id="photos"><a href="/photos/" title="Photos from travels around the world">Photos</a></li>
<!--<li id="guides"><a href="/travel-guide/1/" title="Travel Guides, Tips, Tricks and Recommendations">Guides</a>,</li>-->
- <li id="notes"><a href="/notes/" title="Short thoughts, sometimes syndicated to twitter">Notes</a></li>
- <li id="maps"><a href="/map/" title="Maps and miscellanea">Map</a></li>
+ <li id="notes"><a href="/notes/" title="Shorter thoughts, sometimes syndicated to twitter">Notes</a></li>
+ <li id="maps"><a href="/map" title="Maps and miscellanea">Map</a></li>
<li id="projects" ><a href="/projects/" title="Luxagraf: Projects">Projects</a></li>
- <li id="etc" class="last"><a href="/about/" title="About Luxagraf">Etc</a></li>
+ <li id="etc" class="last"><a href="/about" title="About Luxagraf">Etc</a></li>
</ul>
</nav>
</div>