|
1
|
1 |
{% load i18n %} |
|
|
2 |
{% load logintag %} |
|
|
3 |
{% load navigation %} |
|
|
4 |
<?xml version="1.0" encoding="UTF-8"?> |
|
|
5 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
|
|
6 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
|
7 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{LANGUAGE_CODE}}" lang="{{LANGUAGE_CODE}}"> |
|
|
8 |
<head> |
|
|
9 |
{% block head %} |
|
|
10 |
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> |
|
|
11 |
<meta http-equiv="content-language" content="{{LANGUAGE_CODE}}" /> |
|
|
12 |
<link rel="SHORTCUT ICON" href="{{LDT_MEDIA_PREFIX}}/img/favicon.ico" /> |
|
|
13 |
<title>{% block title %}{% trans "page_title" %}{% endblock %}</title> |
|
|
14 |
{% block js_import %} |
|
|
15 |
<script type="text/javascript" src="{{LDT_MEDIA_PREFIX}}js/jquery.min.js"></script> |
|
|
16 |
{% endblock %} |
|
|
17 |
|
|
|
18 |
{% block css_declaration %} |
|
|
19 |
<style type="text/css"> |
|
|
20 |
.rounded { |
|
|
21 |
behavior:url("{{LDT_MEDIA_PREFIX}}css/border-radius.htc"); |
|
|
22 |
} |
|
|
23 |
</style> |
|
|
24 |
{% endblock %} |
|
|
25 |
|
|
|
26 |
{% block css_import %} |
|
|
27 |
|
|
|
28 |
<link rel="stylesheet" href="{{LDT_MEDIA_PREFIX}}css/blueprint/screen.css" type="text/css" media="screen, projection" /> |
|
|
29 |
<link rel="stylesheet" href="{{LDT_MEDIA_PREFIX}}css/blueprint/print.css" type="text/css" media="print" /> |
|
|
30 |
<!--[if lt IE 8]> |
|
|
31 |
<link rel="stylesheet" href="{{BASE_URL}}static/css/blueprint/ie.css" type="text/css" media="screen, projection" /> |
|
|
32 |
<![endif]--> |
|
|
33 |
<link rel="stylesheet" href="{{LDT_MEDIA_PREFIX}}css/style.css" type="text/css"/> |
|
|
34 |
{% endblock %} |
|
|
35 |
|
|
|
36 |
{% block js_declaration %} |
|
|
37 |
{% endblock %} |
|
|
38 |
{% endblock %} |
|
|
39 |
</head> |
|
|
40 |
<body> |
|
|
41 |
{% block body %} |
|
|
42 |
{% endblock %} |
|
|
43 |
</body> |
|
|
44 |
</html> |