| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta name="author" content="Seum Man" />
- <meta name="keywords" content="seum compteur" />
- <meta name="description" content="Ça fout le seum" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="shortcut icon" type="image/png" href="{{STATIC_URL}}/favicon.ico"/>
- <title>SeumBook™ – {% block title %}{% endblock %}</title>
- {# Load the tag library #} {% load bootstrap3 %} {# Load CSS and JavaScript #} {% bootstrap_css %} {# Display django.contrib.messages as Bootstrap alerts #} {% bootstrap_messages %}
- <style>
- body {
- background-color: #EEEEEE
- }
- .seum-counter {
- height: 75px;
- 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"]
- });
- function revealSeumForm(counterID) {
- document.getElementById('counter'+counterID).style.display='inline';
- document.getElementById('button'+counterID).style.display='none';
- document.getElementById('reason'+counterID).focus();
- document.getElementById('container'+counterID).style.height='200px';
- }
- </script>
- </head>
- <section id="content">
- {% block content %}{% endblock %}
- </section>
- </body>
- </html>
|