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.

75 lines
2.8 KiB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <title>Mumble Administration</title>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <!-- add your meta tags here -->
  7. <link href="/static/css/my_layout.css" rel="stylesheet" type="text/css" />
  8. <link href="/static/mumble/style.css" rel="stylesheet" type="text/css" />
  9. <script src="/static/js/lib/jquery-1.3.min.js" type="text/javascript" ></script>
  10. <!--[if lte IE 7]>
  11. <link href="/static/css/patches/patch_my_layout.css" rel="stylesheet" type="text/css" />
  12. <![endif]-->
  13. </head>
  14. <body>
  15. <div class="page_margins">
  16. <div id="border-top">
  17. <div id="edge-tl"></div>
  18. <div id="edge-tr"></div>
  19. </div>
  20. <div class="page">
  21. <div id="header">
  22. <div id="topnav">
  23. <!-- start: skip link navigation -->
  24. <a class="skip" title="skip link" href="#navigation">Skip to the navigation</a><span class="hideme">.</span>
  25. <a class="skip" title="skip link" href="#content">Skip to the content</a><span class="hideme">.</span>
  26. <!-- end: skip link navigation -->
  27. <a href="/accounts/login">Login</a> |
  28. <a href="/admin" target="_blank">Admin</a> |
  29. <a href="/accounts/imprint">Imprint</a>
  30. </div>
  31. <h2>{% block Headline %}{% endblock %}</h2>
  32. </div>
  33. <div id="nav">
  34. <!-- skiplink anchor: navigation -->
  35. <a id="navigation" name="navigation"></a>
  36. <div class="hlist">
  37. <!-- main navigation: horizontal list -->
  38. <ul>
  39. <li class="active"><strong>Mumble</strong></li>
  40. <li><a href="/mumble">Mumble</a></li>
  41. <li><a href="/accounts/profile">Profile</a></li>
  42. </ul>
  43. </div>
  44. </div>
  45. <div id="main">
  46. <div id="col1">
  47. <div id="col1_content" class="clearfix">
  48. <!-- add your content here -->
  49. {% block LeftColumn %}
  50. {% endblock %}
  51. </div>
  52. </div>
  53. <div id="col3">
  54. <div id="col3_content" class="clearfix">
  55. <!-- add your content here -->
  56. {% block Content %}
  57. {% endblock %}
  58. </div>
  59. <!-- IE Column Clearing -->
  60. <div id="ie_clearing"> &#160; </div>
  61. </div>
  62. </div>
  63. <!-- begin: #footer -->
  64. <div id="footer">
  65. You are using <a href="http://bitbucket.org/Svedrin/mumble-django">Mumble-Django</a> --
  66. layout based on <a href="http://www.yaml.de/">YAML</a>
  67. </div>
  68. </div>
  69. <div id="border-bottom">
  70. <div id="edge-bl"></div>
  71. <div id="edge-br"></div>
  72. </div>
  73. </div>
  74. </body>
  75. </html>