暂无描述

baseTemplate.html 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="author" content="Seum Man" />
  6. <meta name="keywords" content="seum compteur" />
  7. <meta name="description" content="Ça fout le seum" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <link rel="shortcut icon" type="image/png" href="{{STATIC_URL}}/favicon.ico"/>
  10. <title>SeumBook™ – {% block title %}{% endblock %}</title>
  11. {# Load the tag library #} {% load bootstrap3 %} {# Load CSS and JavaScript #} {% bootstrap_css %} {# Display django.contrib.messages as Bootstrap alerts #} {% bootstrap_messages %}
  12. <style>
  13. body {
  14. background-color: #EEEEEE
  15. }
  16. .seum-counter {
  17. height: 75px;
  18. overflow: auto;
  19. }
  20. .timeline {
  21. height: 125px;
  22. }
  23. .graphs {
  24. overflow-y: hidden;
  25. }
  26. .graphs > div {
  27. display: block;
  28. margin: 0 auto;
  29. }
  30. .counter-link, .counter-link:hover {
  31. color: inherit; /* blue colors for links too */
  32. text-decoration: inherit; /* no underline */
  33. }
  34. </style>
  35. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  36. <script type="text/javascript">
  37. google.load("visualization", "1", {
  38. packages: ["corechart"]
  39. });
  40. function revealSeumForm(counterID) {
  41. document.getElementById('counter'+counterID).style.display='inline';
  42. document.getElementById('button'+counterID).style.display='none';
  43. document.getElementById('reason'+counterID).focus();
  44. document.getElementById('container'+counterID).style.height='200px';
  45. }
  46. </script>
  47. </head>
  48. <section id="content">
  49. {% block content %}{% endblock %}
  50. </section>
  51. </body>
  52. </html>