暫無描述

baseTemplate.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 %} {% bootstrap_javascript jquery=True %} {# 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. .primary-counter {
  21. height: 215px;
  22. overflow: auto;
  23. display: flex;
  24. align-items: center;
  25. }
  26. .timeline {
  27. height: 125px;
  28. }
  29. .graphs {
  30. overflow-y: hidden;
  31. }
  32. .graphs>div {
  33. display: block;
  34. margin: 0 auto;
  35. }
  36. .counter-link,
  37. .counter-link:hover {
  38. color: inherit;
  39. /* blue colors for links too */
  40. text-decoration: inherit;
  41. /* no underline */
  42. }
  43. </style>
  44. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  45. <script type="text/javascript">
  46. google.load("visualization", "1", {
  47. packages: ["corechart"]
  48. });
  49. function revealSeumForm(counterID) {
  50. document.getElementById('counter' + counterID).style.display = 'inline';
  51. document.getElementById('button' + counterID).style.display = 'none';
  52. document.getElementById('reason' + counterID).focus();
  53. }
  54. </script>
  55. </head>
  56. <section id="content">
  57. {% block content %}{% endblock %}
  58. </section>
  59. </body>
  60. </html>