diff options
author | Alexis Métaireau <alexis@notmyidea.org> | 2012-10-24 18:45:19 +0200 |
---|---|---|
committer | Alexis Métaireau <alexis@notmyidea.org> | 2012-10-24 18:45:19 +0200 |
commit | 320fc05064b532b0cd0ec383aae5ff3d48ec71f9 (patch) | |
tree | 74d45a4e07c91564eb4b968d69f2e9eca5a61270 /bootlex/templates/base.html | |
parent | 01a8792a5116a305368d9d98fa366923086e0633 (diff) | |
download | pelican-themes-320fc05064b532b0cd0ec383aae5ff3d48ec71f9.tar.gz |
fix the links on the bootlex theme
Diffstat (limited to 'bootlex/templates/base.html')
-rw-r--r-- | bootlex/templates/base.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bootlex/templates/base.html b/bootlex/templates/base.html index 95629dd..3aaffa6 100644 --- a/bootlex/templates/base.html +++ b/bootlex/templates/base.html @@ -5,8 +5,8 @@ {% block head %} <title>{% block title %}{% endblock title %} - {{ SITENAME }}</title> <link href="http://fonts.googleapis.com/css?family=Arimo:400,700|Inika" rel="stylesheet" type="text/css" /> - <link rel="stylesheet" type="text/css" href="{{ SITEURL }}theme/bootstrap.css" /> - <link rel="stylesheet" type="text/css" href="{{ SITEURL }}theme/pastie.css" /> + <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/bootstrap.css" /> + <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/pastie.css" /> {% endblock head %} {% include 'analytics.html' %} @@ -25,18 +25,18 @@ <ul class="nav nav-list"> <li class="nav-header">Blog</li> <li {% if page_name == 'index' %}class="active"{% endif %}><a href="{{ SITEURL }}">Index</a></li> - <li {% block menu_entry_tag %}{% endblock %}><a href="{{ SITEURL }}tags/">Tags</a></li> - <li {% block menu_entry_archive %}{% endblock %}><a href="{{ SITEURL }}archives/">Archiv</a></li> + <li {% block menu_entry_tag %}{% endblock %}><a href="{{ SITEURL }}/tags/">Tags</a></li> + <li {% block menu_entry_archive %}{% endblock %}><a href="{{ SITEURL }}/archives/">Archiv</a></li> {% if DISPLAY_PAGES_ON_MENU %} {% if PAGES %} <li class="nav-header">Seiten</li> {% for p in PAGES %} - <li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}{{ p.url }}">{{ p.title }}</a></li> + <li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} {% endif %} {% else %} {# {% for cat, null in categories %} - <li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}category/{{ cat }}/">{{ cat }}</a></li> + <li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/category/{{ cat }}/">{{ cat }}</a></li> {% endfor %} #} {% endif %} |