KXStudio Website https://kx.studio/
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.

174 lines
7.5KB

  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" dir="ltr">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <!--[if lt IE 7]>
  6. <meta http-equiv="imagetoolbar" content="no" />
  7. <![endif]-->
  8. <title>KXStudio News</title>
  9. <link rel="copyright" href="http://creativecommons.org/licenses/publicdomain/" />
  10. <link rel="stylesheet" href="../css/style.fluid.css" type="text/css" media="screen" />
  11. <link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" />
  12. <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Raleway:200,700,800,400" type="text/css" media="screen" />
  13. <link rel="icon" type="image/png" href="../images/ico_kxstudio.png" />
  14. <link rel="shortcut icon" href="../favicon.ico" />
  15. {% if site.clean_urls %}<link rel="canonical" href="{% if (post.url) %}$post.clean{% elseif page.url %}$page.clean {% else %}$site.url{% endif %}" />{% endif %}
  16. $theme.feeds
  17. $theme.stylesheets
  18. $theme.javascripts
  19. ${ trigger.call("head") }
  20. <script type="text/javascript">
  21. function closeAllMenus(){
  22. var objSoftwareMenu = document.getElementById("div_menuSoftware");
  23. var objRepositoriesMenu = document.getElementById("div_menuRepositories");
  24. var objCommunityMenu = document.getElementById("div_menuCommunity");
  25. if (objSoftwareMenu.style.visibility == "visible")
  26. objSoftwareMenu.style.visibility = "hidden";
  27. if (objRepositoriesMenu.style.visibility == "visible")
  28. objRepositoriesMenu.style.visibility = "hidden";
  29. if (objCommunityMenu.style.visibility == "visible")
  30. objCommunityMenu.style.visibility = "hidden";
  31. };
  32. function menuItemClicked(event, menu, itemName){
  33. event.stopPropagation();
  34. closeAllMenus();
  35. //if (menu.style.visibility != "visible")
  36. {
  37. var leftPos = document.getElementById(itemName).getBoundingClientRect().left - 1;
  38. menu.style.left = "" + leftPos + "px";
  39. menu.style.visibility = "visible";
  40. }
  41. //else
  42. //{
  43. // menu.style.visibility = "hidden";
  44. //}
  45. return false;
  46. };
  47. function bodyClicked(){
  48. closeAllMenus();
  49. return true;
  50. };
  51. function itemSoftwareClicked(event) { return menuItemClicked(event, document.getElementById("div_menuSoftware"), "item-soft"); };
  52. function itemRepositoriesClicked(event){ return menuItemClicked(event, document.getElementById("div_menuRepositories"), "item-repos"); };
  53. function itemCommunityClicked(event) { return menuItemClicked(event, document.getElementById("div_menuCommunity"), "item-community"); };
  54. </script>
  55. </head>
  56. <body class="mediawiki ltr ns-0 ns-subject skin-bentofluid" style="min-width:1125px" onClick="return bodyClicked();">
  57. <!-- Software sub menu -->
  58. <div id="div_menuSoftware" class="div_menuDropdown">
  59. <p><a href="/Applications"><img src="/images/ico_cadence.png" alt=""/> &nbsp; Applications</a></p>
  60. <p><a href="/Plugins"><img src="/images/ico_distrho.png" alt=""/> &nbsp; Plugins</a></p>
  61. </div>
  62. <!-- Repositories sub menu -->
  63. <div id="div_menuRepositories" class="div_menuDropdown">
  64. <p><a href="/Repositories">About</a></p>
  65. <p><a href="/Repositories:Applications">Applications (in Repo)</a></p>
  66. <p><a href="/Repositories:Plugins">Plugins (in Repo)</a></p>
  67. </div>
  68. <!-- Support sub menu -->
  69. <div id="div_menuSupport" class="div_menuDropdown">
  70. <p><a href="/Documentation">Documentation</a></p>
  71. </div>
  72. <!-- Community sub menu -->
  73. <div id="div_menuCommunity" class="div_menuDropdown">
  74. <p><a href="http://webchat.freenode.net/?channels=#kxstudio,#opensourcemusicians" class="external" rel="nofollow" target="_blank"><img src="/images/ico_chat.png" alt=""/> &nbsp; Chat</a></p>
  75. <p><a href="http://linuxmusicians.com/viewforum.php?f=47" class="external" rel="nofollow" target="_blank"><img src="/images/ico_forum.png" alt=""/> &nbsp; Forum</a></p>
  76. <p><a href="https://soundcloud.com/groups/kxstudio" class="external" rel="nofollow" target="_blank"><img src="/images/ico_soundcloud.png" alt=""/> &nbsp; Songs</a></p>
  77. </div>
  78. <!-- Top link -->
  79. <a name="Top" id="Top"></a>
  80. <!-- Start: Header -->
  81. <div id="header">
  82. <div id="header-content" class="container_12">
  83. <a id="header-logo" href="/">
  84. <img src="../images/header-logo_mod.png" width="46" height="26" alt="Header Logo"/>
  85. </a>
  86. <a id="header-home" href="/" style="font-size:1.2em">Home</a>
  87. <ul id="global-navigation">
  88. <li id="item-news"><a href="/News">News</a></li>
  89. <li id="item-soft"><a href="#" onClick="return itemSoftwareClicked(event);">Software &#9660;</a></li>
  90. <li id="item-repos"><a href="#" onClick="return itemRepositoriesClicked(event);">Repositories &#9660;</a></li>
  91. <li id="item-community"><a href="#" onClick="return itemCommunityClicked(event);">Community &#9660;</a></li>
  92. <li id="item-documentation"><a href="/Documentation">Documentation</a></li>
  93. <li id="item-donate"><a href="/Donations">Donations</a></li>
  94. <li id="item-downloads"><a href="/Downloads">Downloads</a></li>
  95. <li id="item-paste"><a href="/Paste">Paste</a></li>
  96. </ul>
  97. </div>
  98. </div>
  99. <!-- End: Header -->
  100. <div id="subheader" class="container_16">
  101. <div id="breadcrump" class="grid_12 alpha">
  102. <a href="/" title="Home"><img src="../images/home_grey.png" width="16" height="16" alt="Home" /> KXStudio </a>
  103. &gt; <a href="/News">News</a>
  104. </div>
  105. </div>
  106. <!-- Start: Main Content Area -->
  107. <div id="content" class="container_16 content-wrapper">
  108. <div id="some-content" class="box box-shadow grid_77 clearfix">
  109. <!-- Start: Box header -->
  110. <div class="box-header header-tabs">
  111. <ul>
  112. <li><a href="#Top">Top</a></li>
  113. </ul>
  114. </div>
  115. <div id="contentSub"></div>
  116. <!-- End: Box header -->
  117. <div class="alpha omega paste_canvas_area">
  118. <h1><span class="mw-headline"> KXStudio&nbsp;: News </span></h1>
  119. <!-- - - - - - - - Begin Content Area - - - - - - - -->
  120. <div style="position: absolute; top: 120px; right: 100px;">
  121. <a href="{% url "feed" %}"><img src="../images/rss.png" alt="RSS"/></a>
  122. </div>
  123. <div id="wrapper">
  124. <div id="content">
  125. {% for type, messages in flash.all | items %}
  126. {% for message in messages %}
  127. <div class="${ type | depluralize }">$message</div>
  128. {% endfor %}
  129. {% endfor %}
  130. {% block content %}{% endblock %}
  131. <div class="clear"></div>
  132. $posts.prev_link
  133. $posts.next_link
  134. </div>
  135. <div class="clear"></div>
  136. </div>
  137. <!-- - - - - - - - End Content Area - - - - - - - -->
  138. </div>
  139. <br/>
  140. <div class="box-footer header-tabs">
  141. <ul>
  142. <li><a href="#Top">Top</a></li>
  143. </ul>
  144. </div>
  145. </div>
  146. </div>
  147. <!-- End: Main Content Area -->
  148. <!-- Note: this clears floating, set in previous elements -->
  149. <div class="clear"></div>
  150. <div id="footer"></div>
  151. </body>
  152. </html>