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