Sin descripción

baseTemplate.html 1.2KB

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