| 12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8"/>
- <meta name="author" content="Seum Man"/>
- <meta name="keywords" content="seum compteur"/>
- <meta name="description" content="Compteur de seum"/>
- <title>Seum – {% block title %}{% endblock %}</title>
- {# Load the tag library #}
- {% load bootstrap3 %}
- {# Load CSS and JavaScript #}
- {% bootstrap_css %}
- {% bootstrap_javascript %}
- {# Display django.contrib.messages as Bootstrap alerts #}
- {% bootstrap_messages %}
- <style>
- .seum-counter {
- height:125px;
- overflow: auto;
- margin-bottom:15px;
- }
- </style>
- </head>
- <section id="content">
- {% block content %}{% endblock %}
- </section>
- </body>
- </html>
|