Sen descrición

baseTemplate.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 #}
  12. {% load bootstrap3 %}
  13. {# Load CSS and JavaScript #}
  14. {% bootstrap_css %}
  15. {% bootstrap_javascript jquery=True %}
  16. {# Display django.contrib.messages as Bootstrap alerts #}
  17. {% bootstrap_messages %}
  18. <style>
  19. body {
  20. background-color: #EEEEEE
  21. }
  22. .seum-counter {
  23. height: 75px;
  24. overflow: auto;
  25. }
  26. .primary-counter {
  27. height: 215px;
  28. overflow: auto;
  29. display: flex;
  30. align-items: center;
  31. }
  32. .timeline {
  33. height: 125px;
  34. }
  35. .graphs {
  36. overflow-y: hidden;
  37. }
  38. .graphs>div {
  39. display: block;
  40. margin: 0 auto;
  41. }
  42. .counter-link,
  43. .counter-link:hover {
  44. color: inherit;
  45. /* blue colors for links too */
  46. text-decoration: inherit;
  47. /* no underline */
  48. }
  49. </style>
  50. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  51. <script type="text/javascript">
  52. google.load("visualization", "1", {
  53. packages: ["corechart"]
  54. });
  55. function revealSeumForm(counterID) {
  56. document.getElementById('counter' + counterID).style.display = 'inline';
  57. document.getElementById('button' + counterID).style.display = 'none';
  58. document.getElementById('reason' + counterID).focus();
  59. }
  60. </script>
  61. </head>
  62. <section id="content">
  63. {% block content %}{% endblock %}
  64. </section>
  65. </body>
  66. </html>