Няма описание

baseTemplate.html 927B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. .graphs > div {
  17. display: block;
  18. margin: 0 auto;
  19. }
  20. </style>
  21. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  22. <script type="text/javascript">
  23. google.load("visualization", "1", {
  24. packages: ["corechart"]
  25. });
  26. </script>
  27. </head>
  28. <section id="content">
  29. {% block content %}{% endblock %}
  30. </section>
  31. </body>
  32. </html>