Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.4 KiB

  1. {% load staticfiles %}
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>Mumble Administration</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  7. <!-- for iphone/ipod -->
  8. <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0" />
  9. <meta name="apple-mobile-web-app-capable" content="yes" />
  10. <link rel="apple-touch-icon" href="{% static 'mumble/img/mumble.64x64.png' %}" />
  11. <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}" />
  12. <link rel="stylesheet" type="text/css" href="{% static 'templatestyle.css' %}" />
  13. <link rel="stylesheet" type="text/css" href="{% static 'mumble/css/style.css' %}" />
  14. <link rel="shortcut icon" type="image/png" href="{% static '/img/mumble.16x16.png' %}" />
  15. {% block HeadTag %}
  16. {% endblock %}
  17. </head>
  18. <body bgcolor="#3B69AD">
  19. <div id="mobilecontent">
  20. {% block LeftColumn %}
  21. {% endblock %}
  22. </div>
  23. <!-- footer -->
  24. <div id="footerpanel" style="color:white">
  25. <ul>
  26. <li><a href="{% url 'mumble.views.redir' %}" style="color:white">Home</a></li>
  27. <li><a href="http://bitbucket.org/Svedrin/mumble-django" style="color:white" target="_blank">Mumble-Django {{ CURRENTVERSION }}</a></li>
  28. </ul>
  29. </div>
  30. </body>
  31. </html>