index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {% load cms_tags sekizai_tags menu_tags staticfiles piwik_tags i18n %}
  2. <!doctype html>
  3. <html lang="de">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="author" content="Adfinis SyGroup AG">
  8. <meta name="keywords" content="Wahlen 2015,Parlament,Open Source,Freie Software">
  9. <title>Freedomvote{% block 'title' %}{% endblock %}</title>
  10. <link rel="stylesheet" href="{% static 'lib/bootstrap/css/bootstrap.min.css' %}">
  11. <link rel="stylesheet" href="{% static 'lib/font-awesome/css/font-awesome.min.css' %}">
  12. <link rel="stylesheet" href="{% static 'lib/jquery-ui/jquery-ui.min.css' %}">
  13. <link rel="stylesheet" href="{% static 'lib/jquery-ui/jquery-ui.theme.css' %}">
  14. <link rel="stylesheet" href="{% static 'css/app.css' %}">
  15. {% render_block 'css' %}
  16. <!--[if lt IE 9]>
  17. <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  18. <![endif]-->
  19. </head>
  20. <body>
  21. {% show_menu 0 100 100 100 'navbar.html' %}
  22. <div class="container content">
  23. <noscript>
  24. <div class="alert alert-danger">
  25. {% trans 'noscript' %}
  26. </div>
  27. </noscript>
  28. {% block 'content' %}{% endblock %}
  29. </div>
  30. {% include 'footer.html' %}
  31. {% include 'messages.html' %}
  32. <script src="{% static 'lib/jquery/jquery.min.js' %}"></script>
  33. <script src="{% static 'lib/bootstrap/js/bootstrap.min.js' %}"></script>
  34. <script src="{% static 'lib/jquery-ui/jquery-ui.min.js' %}"></script>
  35. <script src="{% static 'lib/highcharts/highcharts.js' %}"></script>
  36. <script src="{% static 'js/notify.js' %}"></script>
  37. <script src="{% static 'js/language.js' %}"></script>
  38. {% block 'scripts' %}{% endblock %}
  39. {% render_block 'js' %}
  40. {% if not debug %}{% tracking_code %}{% endif %}
  41. </body>
  42. </html>