diff options
Diffstat (limited to 'ishtar/templates/sheet.html')
-rw-r--r-- | ishtar/templates/sheet.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ishtar/templates/sheet.html b/ishtar/templates/sheet.html index 9d1305c1d..a93b193e0 100644 --- a/ishtar/templates/sheet.html +++ b/ishtar/templates/sheet.html @@ -1,7 +1,23 @@ {% load i18n %} +{% block main_head %} +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <link rel="shortcut icon" href="{{MEDIA_URL}}/media/images/favicon.png"> + <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} + </title> + <link rel="stylesheet" href="{{MEDIA_URL}}/media/style.css" /> +</head> +<body> +{% endblock %} <div class="sheet"> <div class="head"><a href='#' onclick='$("#window").hide("slow")'>{% trans "Close" %}</a></div> <div class="body"> {% block content %}{% endblock %} </div> </div> +{%block main_foot%} +</body> +</html> +{%endblock%} |