diff options
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 26 |
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> |
