toolbar.php 1.7 KB

123456789101112131415161718192021222324252627
  1. <div id="header" class="desktop">
  2. <div id="header_content">
  3. <img src="/img/logo/logo-api.png"/>
  4. <div id="header_menu">
  5. <table>
  6. <tr>
  7. <td><a href="http://<?php echo($http_host . "API/help/V$v/"); ?>">API documentation</a></td>
  8. <td><a href="http://<?php echo($http_host . "API/help/V$v/sync/"); ?>">Sync</a></td>
  9. <td><a href="http://<?php echo($http_host . "API/help/V$v/comment/"); ?>">Comment</a></td>
  10. <td><a href="http://<?php echo($http_host); ?>/">Main page</a></td>
  11. </tr>
  12. </table>
  13. </div>
  14. </div>
  15. </div>
  16. <div id="header_m" class="mobile">
  17. <img src="/img/logo/logo-api.png" onClick='toggleMobileMenu();' id='mobile_logo'/>
  18. <div id="header_menu_m">
  19. <div id='header_m_title' onClick='openMobileMenu();' class='pointer'><span><img src='http://<?php echo $http_host; ?>/img/misc/slid-menu.png'/>&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $cur_section; ?></span></div>
  20. <div class='header_m_link'><a href="http://<?php echo($http_host . "API/help/V$v/"); ?>">API documentation</a></div>
  21. <div class='header_m_link'><a href="http://<?php echo($http_host . "API/help/V$v/sync/"); ?>">Sync</a></div>
  22. <div class='header_m_link'><a href="http://<?php echo($http_host . "API/help/V$v/comment/"); ?>">Comment</a></div>
  23. <div class='header_m_link'><a href="http://<?php echo($http_host); ?>/">Main page</a></div>
  24. <div id='header_m_slider' onClick='closeMobileMenu();' class='pointer'><span><img src='http://<?php echo $http_host; ?>/img/misc/slid-top.png'/></span></div>
  25. </div><br/><br/>
  26. </div>