Geen omschrijving

baseTemplate.html 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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="Compteurs de seum" />
  8. <title>Seum – {% block title %}{% endblock %}</title>
  9. {# Load the tag library #} {% load bootstrap3 %} {# Load CSS and JavaScript #} {% bootstrap_css %} {% bootstrap_javascript %} {# Display django.contrib.messages as Bootstrap alerts #} {% bootstrap_messages %}
  10. <style>
  11. body {
  12. background-color: #EEEEEE
  13. }
  14. .seum-counter {
  15. height: 125px;
  16. overflow: auto;
  17. }
  18. .timeline {
  19. height: 125px;
  20. }
  21. .graphs {
  22. overflow-y: hidden;
  23. }
  24. .graphs > div {
  25. display: block;
  26. margin: 0 auto;
  27. }
  28. .counter-link, .counter-link:hover {
  29. color: inherit; /* blue colors for links too */
  30. text-decoration: inherit; /* no underline */
  31. }
  32. </style>
  33. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  34. <script type="text/javascript">
  35. google.load("visualization", "1", {
  36. packages: ["corechart"]
  37. });
  38. </script>
  39. </head>
  40. <section id="content">
  41. {% block content %}{% endblock %}
  42. </section>
  43. </body>
  44. </html>