| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta name="author" content="Seum Man" />
- <meta name="keywords" content="seum compteur" />
- <meta name="description" content="Compteurs de seum" />
- <link rel="shortcut icon" type="image/png" href="{{STATIC_URL}}/favicon.ico"/>
- <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>
- body {
- background-color: #EEEEEE
- }
- .seum-counter {
- height: 125px;
- overflow: auto;
- }
- .timeline {
- height: 125px;
- }
- .graphs {
- overflow-y: hidden;
- }
- .graphs > div {
- display: block;
- margin: 0 auto;
- }
- .counter-link, .counter-link:hover {
- color: inherit; /* blue colors for links too */
- text-decoration: inherit; /* no underline */
- }
- </style>
- <script type="text/javascript" src="https://www.google.com/jsapi"></script>
- <script type="text/javascript">
- google.load("visualization", "1", {
- packages: ["corechart"]
- });
- </script>
- </head>
- <section id="content">
- {% block content %}{% endblock %}
- </section>
- </body>
- </html>
|