index.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <!--
  3. * Licensed to the Apache Software Foundation (ASF) under one or more
  4. * contributor license agreements. See the NOTICE file distributed with
  5. * this work for additional information regarding copyright ownership.
  6. * The ASF licenses this file to You under the Apache License, Version 2.0
  7. * (the "License"); you may not use this file except in compliance with
  8. * the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. -->
  18. <html lang="en">
  19. <head>
  20. <meta charset="UTF-8">
  21. <title>Atlas - Rest API</title>
  22. <link rel="stylesheet" type="text/css" href="./swagger-ui.css" >
  23. <link rel="icon" href="../img/favicon.ico" type="image/x-icon" >
  24. <style>
  25. html
  26. {
  27. box-sizing: border-box;
  28. overflow: -moz-scrollbars-vertical;
  29. overflow-y: scroll;
  30. }
  31. *,
  32. *:before,
  33. *:after
  34. {
  35. box-sizing: inherit;
  36. }
  37. body
  38. {
  39. margin:0;
  40. background: #fafafa;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div id="swagger-ui"></div>
  46. <script src="../js/libs/jquery/js/jquery.min.js" charset="UTF-8"> </script>
  47. <script src="./swagger-ui-bundle.js" charset="UTF-8"> </script>
  48. <script src="./swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
  49. <script src="./index.js" charset="UTF-8"> </script>
  50. </body>
  51. </html>