summaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/templates/base.html b/templates/base.html
index 65433ed..25b079f 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -4,15 +4,15 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="ROBOTS" content="INDEX, FOLLOW" />
- <title>{% block title %}Mail app{% endblock %}</title>
- <meta name="author" content="" />
+ <title>{% block title %}{{ app_name }}{% endblock %}</title>
+ <meta name="author" content="" />
<meta name="dc.language" content="en" />
-
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css" />
- {% block additional_headers %}
+ {% block additional_stylesheets %}
{% endblock %}
+
</head>
{% load i18n %}
@@ -79,17 +79,17 @@
</div>
<hr id="white"/>
<hr />
- </div>
{% endblock %}
-
- <div class="content">
- {% block content %}
- {% endblock %}
</div>
+ <!-- End of Header -->
+
+ {% block content %}
+ {% endblock %}
- <script src="{{ STATIC_URL }}/js/libs/jquery-1.7.1.min.js"></script>
- {% block additionaljs %}
- {% endblock %}
+ <script src="{{ STATIC_URL }}/js/libs/jquery-1.7.1.min.js"></script>
+
+ {% block additionaljs %}
+ {% endblock %}
</body>
</html>