diff options
| author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-20 02:54:17 -0400 |
|---|---|---|
| committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-20 02:54:17 -0400 |
| commit | 5071591286b89bd05fb9febed308fc219bf7deca (patch) | |
| tree | 67a738ac7d5e2e56f35cfe22997cc38f2f5a617f /templates/base.html | |
| parent | c5c7fa5f7ff3f09ea735d3d054708fc2164792fb (diff) | |
| download | hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.tar.gz hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.tar.xz hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.zip | |
removing all base_*.html template files. All templates now extends single base.html
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 24 |
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> |
