diff options
author | Kyle Fuller <inbox@kylefuller.co.uk> | 2014-06-28 17:40:14 +0100 |
---|---|---|
committer | Kyle Fuller <inbox@kylefuller.co.uk> | 2014-06-28 17:40:14 +0100 |
commit | 8b443b5e0d8c07e7359e01bce5929a66bcf1b515 (patch) | |
tree | 9d1f6ffee5ab2aae8c82d6928fdc8b4e134637bf /gum/templates | |
parent | 1bcc0cf5ba16d65d43779e11e9be883151073fc8 (diff) | |
download | pelican-themes-8b443b5e0d8c07e7359e01bce5929a66bcf1b515.tar.gz |
[gum] Slashes should be forward in URLs
Diffstat (limited to 'gum/templates')
-rw-r--r-- | gum/templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gum/templates/base.html b/gum/templates/base.html index 486226d..af0f3d8 100644 --- a/gum/templates/base.html +++ b/gum/templates/base.html @@ -68,14 +68,14 @@ <div class="row"> <header id="banner" class="body"> - <h1><a href="{{ SITEURL }}\">{{ SITENAME }} <strong>{{ SITESUBTITLE }}</strong></a></h1> + <h1><a href="{{ SITEURL }}/">{{ SITENAME }} <strong>{{ SITESUBTITLE }}</strong></a></h1> </header><!-- /#banner --> <div id="navigation" class="navbar row"> <a href="#" gumby-trigger="#navigation > ul" class="toggle"><i class="icon-menu"></i></a> <ul class="columns"> - <li><a href="{{ SITEURL }}\">Home</a></li> + <li><a href="{{ SITEURL }}/">Home</a></li> {% for title, link in MENUITEMS %} <li><a href="{{ link }}">{{ title }}</a></li> |