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.

ui.tmpl 578B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Gitea API</title>
  6. <link href="{{StaticUrlPrefix}}/css/swagger.css?v={{MD5 AppVer}}" rel="stylesheet">
  7. <style>
  8. html {
  9. box-sizing: border-box;
  10. overflow-y: scroll;
  11. }
  12. *, *:before, *:after {
  13. box-sizing: inherit;
  14. }
  15. body {
  16. margin: 0;
  17. background: #fff;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="swagger-ui" data-source="{{AppUrl}}swagger.{{.APIJSONVersion}}.json"></div>
  23. <script src="{{StaticUrlPrefix}}/js/swagger.js?v={{MD5 AppVer}}"></script>
  24. </body>
  25. </html>