witten
/
luminotes
Archived
1
0
Fork 0

Added trailing slashes to URL paths to prevent unnecessary redirection.

This commit is contained in:
Dan Helfman 2008-11-06 17:55:39 -08:00
parent 04bc69edb5
commit 1b6f8402ee
1 changed files with 2 additions and 2 deletions

View File

@ -21,14 +21,14 @@ class Forums_page( Product_page ):
), ),
), ),
Div( Div(
Span( A( u"general discussion", href = u"/forums/general" ), class_ = u"forum_title" ), Span( A( u"general discussion", href = u"/forums/general/" ), class_ = u"forum_title" ),
P( P(
u""" u"""
Swap tips about making the most out of your personal wiki, and discuss your ideas for Swap tips about making the most out of your personal wiki, and discuss your ideas for
new Luminotes features and enhancements. new Luminotes features and enhancements.
""" """
), ),
Span( A( u"technical support", href = u"/forums/support" ), class_ = u"forum_title" ), Span( A( u"technical support", href = u"/forums/support/" ), class_ = u"forum_title" ),
P( u"Having a problem with your wiki? Something not working as expected? Ask about it here." ), P( u"Having a problem with your wiki? Something not working as expected? Ask about it here." ),
class_ = u"forums_text", class_ = u"forums_text",
), ),