Nenhuma descrição

baseTemplate.html 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. overflow-y: hidden;
  21. }
  22. .graphs > div {
  23. display: block;
  24. margin: 0 auto;
  25. }
  26. .counter-link, .counter-link:hover {
  27. color: inherit; /* blue colors for links too */
  28. text-decoration: inherit; /* no underline */
  29. }
  30. </style>
  31. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  32. <script type="text/javascript">
  33. google.load("visualization", "1", {
  34. packages: ["corechart"]
  35. });
  36. </script>
  37. </head>
  38. <section id="content">
  39. {% block content %}{% endblock %}
  40. </section>
  41. </body>
  42. </html>