summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authoretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-01-18 01:15:11 +0000
committeretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-01-18 01:15:11 +0000
commit40f7f7365797f36cca3499c259dae12b331b5a79 (patch)
treed7cd1563c8fdb2415c24a9b5f792b0988dfb158d /templates/base.html
parent6394089996a4fcd8f16fad6ab9fe26269c92857f (diff)
downloadChimère-40f7f7365797f36cca3499c259dae12b331b5a79.tar.bz2
Chimère-40f7f7365797f36cca3499c259dae12b331b5a79.zip
Change on template organization
git-svn-id: http://www.peacefrogs.net/svn/chimere/trunk@45 9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html26
1 files changed, 12 insertions, 14 deletions
diff --git a/templates/base.html b/templates/base.html
index 943448e..ffa6025 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -12,24 +12,22 @@
</head>
<body>
- {% block top %}{% endblock %}
- <div id="topbar">
+ {% block top %}{% endblock %}
+ <div id="topbar">
<ul id='action'>
{% for action in actions %}
- <li{% ifequal action.id action_selected %} id='selected'{% endifequal %}><a href='/{{ action.path }}' onclick='saveExtent();'>{{ action.label }}</a></li>
+ <li{% ifequal action.id action_selected %} id='selected'{% endifequal %}><a href='/{{ action.path }}' onclick='saveExtent();'>{{ action.label }}</a></li>
{% endfor %}
</ul>
- </div>
- {% block sidebar %}{% endblock %}
- <div id="content">
- {% block message_map %}{% endblock %}
- {% block message_edit %}{% endblock %}
- {% block content %}{% endblock %}
- </div>
- {% block bottom %}{% endblock %}
- <div id='footer'>{% block footer %}
- {% trans "This site uses Chimère"%} - © 2008-2010 <a href='http://blog.peacefrogs.net/nim/chimere/'>Chimère project</a>
- {% endblock %}</div>
+ </div>
+ {% block sidebar %}{% endblock %}
+ {% block message_map %}{% endblock %}
+ {% block message_edit %}{% endblock %}
+ {% block content %}{% endblock %}
+ {% block bottom %}{% endblock %}
+ <div id='footer'>{% block footer %}
+{% trans "This site uses Chimère"%} - © 2008-2010 <a href='http://blog.peacefrogs.net/nim/chimere/'>Chimère project</a>
+ {% endblock %}</div>
</body>
</html>