Root/
| Source at commit 18e8e081f65a757edd428f970c23d4e666fc110d created 9 months 13 days ago. By Jordan Bracco, Fill the input box when clicking on a command. | |
|---|---|
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> |
| 3 | <head> |
| 4 | <title>Escaline{% block title %}{% endblock %}</title> |
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 6 | <link rel="stylesheet" type="text/css" href="/medias/styles/common.css" /> |
| 7 | <link rel="stylesheet" type="text/css" href="/medias/styles/page.css" /> |
| 8 | <link rel="stylesheet" type="text/css" href="/medias/styles/syntax.css" /> |
| 9 | <link rel="shortcut icon" href="/medias/images/favicon.ico" /> |
| 10 | <link rel="icon" type="image/png" href="/medias/images/favicon.png" /> |
| 11 | <link rel="search" type="application/opensearchdescription+xml" href="/medias/opensearch.xml" title="Escaline"> |
| 12 | <link rel="alternate" type="application/rss+xml" title="S'abonner aux nouvelles" href="{% url feeds "news" %}" /> |
| 13 | <link rel="alternate" type="application/rss+xml" title="S'abonner aux dernières commandes" href="{% url feeds "commands" %}" /> |
| 14 | <script type="text/javascript" src="/medias/js/jquery.js"></script> |
| 15 | <script type="text/javascript" src="/medias/js/jquery.flot.js"></script> |
| 16 | <script type="text/javascript" src="/medias/js/escaline.js"></script> |
| 17 | <!--[if IE]><script language="javascript" type="text/javascript" src="excanvas.pack.js"></script><![endif]--> |
| 18 | <script type="text/javascript"> |
| 19 | {% block javascript %}{% endblock %} |
| 20 | </script> |
| 21 | </head> |
| 22 | <body> |
| 23 | |
| 24 | <div id="command"> |
| 25 | <a href="/"><img id="logo" src="/medias/images/logo_small.png" alt="Meuh" /></a> |
| 26 | <form action="/cmd"> |
| 27 | <input type="text" maxlength="262" name="c" id="c" /> |
| 28 | <input type="submit" value="Ok" id="submit_form" /> |
| 29 | </form> |
| 30 | </div> |
| 31 | |
| 32 | <div id="page"> |
| 33 | {% block content %}{% endblock %} |
| 34 | </div> |
| 35 | |
| 36 | {% include "footer.html" %} |
| 37 | |
| 38 | </body> |
| 39 | </html> |
| 40 | |
