mirror of
https://github.com/correl/tornado-openapi3-example.git
synced 2024-11-23 19:19:56 +00:00
20 lines
649 B
HTML
20 lines
649 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Tornado OpenAPI3 Example</title>
|
||
|
<meta charset="utf8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="referrer" content="same-origin">
|
||
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<redoc spec-url="/openapi.yaml"></redoc>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"> </script>
|
||
|
</body>
|
||
|
</html>
|