diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-27 17:01:06 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-27 17:01:06 +0100 |
| commit | 305592b85c83a63c7bf14ce5ea63fbda29f1a81e (patch) | |
| tree | 4e5c1b629c6108bca3d6e43e5e499cefca1fc2d0 /ishtar/templates | |
| parent | d3050b0b9692cb2613ebf408498c1ad038eb2544 (diff) | |
| download | Ishtar-305592b85c83a63c7bf14ce5ea63fbda29f1a81e.tar.bz2 Ishtar-305592b85c83a63c7bf14ce5ea63fbda29f1a81e.zip | |
Add a context processor
Diffstat (limited to 'ishtar/templates')
| -rw-r--r-- | ishtar/templates/base.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ishtar/templates/base.html b/ishtar/templates/base.html index 4f8282bbe..e26a5ddab 100644 --- a/ishtar/templates/base.html +++ b/ishtar/templates/base.html @@ -5,7 +5,9 @@ <head> <link rel="stylesheet" href="{{MEDIA_URL}}/style.css" /> - <title>{% block title %}Ishtar{% endblock %}</title> + <link rel="shortcut icon" href="{{MEDIA_URL}}/images/favicon.png"> + <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} + </title> </head> <body> @@ -20,7 +22,15 @@ {% endif %} {% endblock %} </div> - + <div id="logo"> +{% if APP_NAME %}<p id="app_name">{{APP_NAME}}</p>{%endif%} + </div> + <div id="context_menu"> + {% block context %}{% endblock %} + </div> + <div id="main_menu"> + {% block menu %}{% endblock %} + </div> <div id="content"> {% block content %}{% endblock %} </div> |
