summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html
index 956347a..c358fa2 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -12,6 +12,7 @@
</head>
<body>
+ {% block top %}{% endblock %}
<div id="topbar">
<ul id='action'>
{% for action in actions %}
@@ -19,13 +20,16 @@
{% endfor %}
</ul>
</div>
+ {% block message_map %}{% endblock %}
+ {% block message_edit %}{% endblock %}
{% block sidebar %}{% endblock %}
<div id="content">
{% block content %}{% endblock %}
</div>
- {% block footer %}
- <div id='footer'>{% trans "This site uses Chimère"%} - Copyright © 2008-2009 <a href='http://redmine.peacefrogs.net/projects/show/chimere'>Chimère project</a></div>
- {% 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>