Nenhuma descrição

baseTemplate.html 1.3KB

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