diff options
author | Miguel Ventura <miguel.ventura@gmail.com> | 2012-09-03 01:14:59 +0100 |
---|---|---|
committer | Miguel Ventura <miguel.ventura@gmail.com> | 2012-09-03 01:14:59 +0100 |
commit | ba5c5163ae8ba42d54c3b8b49d3045cd691ce37b (patch) | |
tree | 5a7bdf0690ec9797bef48cf07435dea3fe7ea598 | |
parent | d4c5432d304a4a6cf1739337466929f4e553f7a9 (diff) | |
download | pelican-themes-ba5c5163ae8ba42d54c3b8b49d3045cd691ce37b.tar.gz |
Removed too much on last commit...
-rw-r--r-- | Just-Read/templates/base.html | 2 | ||||
-rw-r--r-- | bootlex/templates/base.html | 2 | ||||
-rw-r--r-- | bootstrap/templates/base.html | 2 | ||||
-rw-r--r-- | brownstone/templates/base.html | 2 | ||||
-rw-r--r-- | brownstone/templates/page.html | 2 | ||||
-rw-r--r-- | lightweight/templates/menu.html | 2 | ||||
-rw-r--r-- | lightweight/templates/page.html | 2 | ||||
-rw-r--r-- | mnmlist/templates/base.html | 2 | ||||
-rw-r--r-- | notmyidea-cms-fr/templates/base.html | 2 | ||||
-rw-r--r-- | notmyidea-cms-fr/templates/index.html | 2 | ||||
-rw-r--r-- | notmyidea-cms/templates/base.html | 2 | ||||
-rw-r--r-- | notmyidea-cms/templates/index.html | 2 | ||||
-rw-r--r-- | sneakyidea/templates/base.html | 2 | ||||
-rw-r--r-- | sneakyidea/templates/index.html | 2 | ||||
-rw-r--r-- | waterspill/templates/base.html | 2 | ||||
-rw-r--r-- | waterspill/templates/page.html | 2 |
16 files changed, 16 insertions, 16 deletions
diff --git a/Just-Read/templates/base.html b/Just-Read/templates/base.html index a768618..7c03499 100644 --- a/Just-Read/templates/base.html +++ b/Just-Read/templates/base.html @@ -40,7 +40,7 @@ <div class="wrapper pages"> <ul class="nav"> {% for p in PAGES %} - <li><a href="{{ SITEURL }}{{ p.url }}">{{ p.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} <li><a href="{{ SITEURL }}/archives.html">Archive</a></li> </ul> diff --git a/bootlex/templates/base.html b/bootlex/templates/base.html index 95629dd..c7dbb8a 100644 --- a/bootlex/templates/base.html +++ b/bootlex/templates/base.html @@ -31,7 +31,7 @@ {% 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 %} diff --git a/bootstrap/templates/base.html b/bootstrap/templates/base.html index 03e00e3..13428ab 100644 --- a/bootstrap/templates/base.html +++ b/bootstrap/templates/base.html @@ -31,7 +31,7 @@ {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} {% endif %} {% for cat, null in categories %} diff --git a/brownstone/templates/base.html b/brownstone/templates/base.html index 7ac50ca..c1bb31d 100644 --- a/brownstone/templates/base.html +++ b/brownstone/templates/base.html @@ -40,7 +40,7 @@ Released : 20100928 <li><a href="{{ SITEURL }}/archives.html">Archives</a></li> {% if DISPLAY_PAGES_ON_MENU %} {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} {% endif %} </ul> diff --git a/brownstone/templates/page.html b/brownstone/templates/page.html index 0c29eeb..58bbd7a 100644 --- a/brownstone/templates/page.html +++ b/brownstone/templates/page.html @@ -3,7 +3,7 @@ {% block content %} <div id="content"> <div class="post"> - <h2 class="title"><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></h1> + <h2 class="title"><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h1> {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get the pdf</a>{% endif %} <div style="clear: both;"> </div> diff --git a/lightweight/templates/menu.html b/lightweight/templates/menu.html index 5a6a52d..2e4702f 100644 --- a/lightweight/templates/menu.html +++ b/lightweight/templates/menu.html @@ -2,7 +2,7 @@ <a href="{{ SITEURL }}/index.html">Accueil</a> {% if DISPLAY_PAGES_ON_MENU != False%} {% for p in PAGES %} - <a {% if p == page %}class="active" {% endif %}href="{{ SITEURL }}{{ p.url }}">{{ p.title }}</a> + <a {% if p == page %}class="active" {% endif %}href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a> {% endfor %} {% else %} <a href="{{ SITEURL }}/categories.html">Catégories</a> diff --git a/lightweight/templates/page.html b/lightweight/templates/page.html index 875fcf7..a9e9623 100644 --- a/lightweight/templates/page.html +++ b/lightweight/templates/page.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block title %}{{ page.title }}{% endblock %} {% block content %} - <h2 class="page_title"><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></h1> + <h2 class="page_title"><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h1> {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get the pdf</a>{% endif %} <div style="clear: both;"> </div> diff --git a/mnmlist/templates/base.html b/mnmlist/templates/base.html index 2e45ed7..5539dc6 100644 --- a/mnmlist/templates/base.html +++ b/mnmlist/templates/base.html @@ -30,7 +30,7 @@ <nav> <ul> {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> {% endfor %} {% if categories|length > 1 %} <li>:: <a href="{{ SITEURL }}/categories.html">Catégories</a></li> diff --git a/notmyidea-cms-fr/templates/base.html b/notmyidea-cms-fr/templates/base.html index 6cc6394..5e6d291 100644 --- a/notmyidea-cms-fr/templates/base.html +++ b/notmyidea-cms-fr/templates/base.html @@ -34,7 +34,7 @@ <li><a href="{{ SITEURL }}/index.html">Accueil</a></li> <li><a href="{{ SITEURL }}/archives.html">Archives</a></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 %} {#{% for cat, null in categories %} diff --git a/notmyidea-cms-fr/templates/index.html b/notmyidea-cms-fr/templates/index.html index e5b8319..c98d82f 100644 --- a/notmyidea-cms-fr/templates/index.html +++ b/notmyidea-cms-fr/templates/index.html @@ -59,7 +59,7 @@ <section id="content" class="body"> <h2>Pages</h2> {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> {% endif %} diff --git a/notmyidea-cms/templates/base.html b/notmyidea-cms/templates/base.html index d8f826e..3ec41e1 100644 --- a/notmyidea-cms/templates/base.html +++ b/notmyidea-cms/templates/base.html @@ -33,7 +33,7 @@ {% if DISPLAY_PAGES_ON_MENU != False %} <li><a href="{{ SITEURL }}/index.html">Home</a></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 %} {#{% for cat, null in categories %} diff --git a/notmyidea-cms/templates/index.html b/notmyidea-cms/templates/index.html index 3bb5697..1e4bad3 100644 --- a/notmyidea-cms/templates/index.html +++ b/notmyidea-cms/templates/index.html @@ -36,7 +36,7 @@ <section id="content" class="body"> <h2>Pages</h2> {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> {% endif %} diff --git a/sneakyidea/templates/base.html b/sneakyidea/templates/base.html index cf90b27..dcd9239 100644 --- a/sneakyidea/templates/base.html +++ b/sneakyidea/templates/base.html @@ -33,7 +33,7 @@ {% if DISPLAY_PAGES_ON_MENU %} {% for current_page in PAGES %} <li {% if page %}{% if page == current_page%}class="active"{% endif %}{% endif %}> - <a href="{{ SITEURL }}{{ current_page.url }}">{{ current_page.title }}</a> + <a href="{{ SITEURL }}/{{ current_page.url }}">{{ current_page.title }}</a> </li> {% endfor %} {% endif %} diff --git a/sneakyidea/templates/index.html b/sneakyidea/templates/index.html index d4e42b2..6b0ddba 100644 --- a/sneakyidea/templates/index.html +++ b/sneakyidea/templates/index.html @@ -39,7 +39,7 @@ <section id="content" class="body"> <h2>Pages</h2> {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> {% endif %} diff --git a/waterspill/templates/base.html b/waterspill/templates/base.html index 1f72a5c..a95fdcc 100644 --- a/waterspill/templates/base.html +++ b/waterspill/templates/base.html @@ -46,7 +46,7 @@ <h3>Pages</h3> <ul> {% for page in PAGES %} - <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </ul> {% endif %} diff --git a/waterspill/templates/page.html b/waterspill/templates/page.html index 8f2f691..953cd5b 100644 --- a/waterspill/templates/page.html +++ b/waterspill/templates/page.html @@ -3,7 +3,7 @@ {% block content %} <div class="blogItem"> - <h2><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></h3> + <h2><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h3> {{ page.content }} {% include 'twitter.html' %} |