Brak opisu

baseTemplate.html 675B

12345678910111213141516171819202122232425262728293031323334
  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="Compteur de seum"/>
  8. <title>Seum – {% block title %}{% endblock %}</title>
  9. {# Load the tag library #}
  10. {% load bootstrap3 %}
  11. {# Load CSS and JavaScript #}
  12. {% bootstrap_css %}
  13. {% bootstrap_javascript %}
  14. {# Display django.contrib.messages as Bootstrap alerts #}
  15. {% bootstrap_messages %}
  16. <style>
  17. .seum-counter {
  18. height:125px;
  19. overflow: auto;
  20. margin-bottom:15px;
  21. }
  22. </style>
  23. </head>
  24. <section id="content">
  25. {% block content %}{% endblock %}
  26. </section>
  27. </body>
  28. </html>