diff options
| author | etienne <etienne@07715635-78ed-41b0-aaf1-0afda6c37f35> | 2009-12-28 18:44:20 +0000 |
|---|---|---|
| committer | etienne <etienne@07715635-78ed-41b0-aaf1-0afda6c37f35> | 2009-12-28 18:44:20 +0000 |
| commit | 852d50136ca934a314712983f16ee1abeac6a19b (patch) | |
| tree | f14fd7aa78bdbf1973e0992a1c806560c1aff810 /templates/base.html | |
| parent | 648e765944add7137feecfa8ea139267e1ed520c (diff) | |
| download | Papillon-852d50136ca934a314712983f16ee1abeac6a19b.tar.bz2 Papillon-852d50136ca934a314712983f16ee1abeac6a19b.zip | |
Simplification of base url management
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html index b66a341..abedf4a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <link rel="stylesheet" href="http://{{root_url}}static/styles.css" /> + <link rel="stylesheet" href="{{root_url}}static/styles.css" /> <title>{% block title %}Papillon{% endblock %}</title> {% block fullscript %}{% endblock %} </head> @@ -13,7 +13,7 @@ <span id='languages'>{% for language in languages%}<a href='?language={{language.0}}'>{{language.1}}</a>{% endfor %}</span> </div> <div id="top"> - <h1><a href='http://{{root_url}}'>Papillon</a></h1> + <h1><a href='{{root_url}}'>Papillon</a></h1> </div> <div id="content"> {% block content %}{% endblock %} |
