Newer
Older
postorius / templates / mailman-django / public / base.html
@benste benste on 21 Jul 2011 1 KB splittet new template into blocks
  1. <!doctype html>
  2. {% load i18n %}
  3. <!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]--><!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--><!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--><!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--><!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]--><head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <title></title>
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <link rel="shortcut icon" href="{{MEDIA_URL}}/images/favicon.ico">
  11. <link rel="apple-touch-icon" href="{{MEDIA_URL}}images/apple-touch-icon.png">
  12. <link rel="stylesheet" href="{{MEDIA_URL}}{{MAILMAN_THEME}}/css/style.css?v=2">
  13. <script src="{{MEDIA_URL}}js/public/libs/modernizr-1.7.min.js"></script>
  14. </head>
  15. <body>
  16. <div id="mm_page">
  17. <h1>{% block heading %}{% endblock %}</h1>
  18. <div class="mm_box">
  19. {% block header%}{% endblock %}
  20. </div>
  21. <ul class="mm_actionButtons">
  22. {% block actionButtonsList %}{% endblock %}
  23. </ul>
  24. <div class="mm_box mm_smallBox mm_smallBoxLeft">
  25. {% block smallBoxLeft %}{% endblock %}
  26. </div>
  27. <div class="mm_box mm_smallBox mm_smallBoxRight">
  28. {% block smallBoxRight %}{% endblock %}
  29. </div>
  30. <div id="mm_footer">
  31. {% block footer %}{% endblock %}
  32. </div>
  33. </div>
  34. <script src="{{MEDIA_URL}}js/public/libs/jquery-1.5.1.min.js"></script>
  35. <script src="{{MEDIA_URL}}js/public/plugins.js"></script>
  36. <script src="{{MEDIA_URL}}js/public/script.js"></script>
  37. </body>