Nenhuma descrição

baseTemplate.html 866B

1234567891011121314151617181920212223242526272829303132333435
  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. .seum-counter {
  12. height: 125px;
  13. overflow: auto;
  14. margin-bottom: 15px;
  15. }
  16. </style>
  17. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  18. <script type="text/javascript">
  19. google.load("visualization", "1", {
  20. packages: ["corechart"]
  21. });
  22. </script>
  23. </head>
  24. <section id="content">
  25. {% block content %}{% endblock %}
  26. </section>
  27. </body>
  28. </html>