mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
30 lines
990 B
HTML
30 lines
990 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ReDoc</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
@import url(//fonts.googleapis.com/css?family=Roboto:300,400,700);
|
|
@import url(//fonts.googleapis.com/css?family=Montserrat:400,700);
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<header> ReDoc </header>
|
|
<form id="schema-url-form">
|
|
<input id="schema-url-input" value='http://rebilly.github.io/SwaggerTemplateRepo/swagger.yaml'>
|
|
<button type="submit"> Explore </button>
|
|
</form>
|
|
<!--<iframe src="https://ghbtns.com/github-btn.html?user=Rebilly&repo=ReDoc&type=star&count=true&size=large"
|
|
frameborder="0" scrolling="0" width="130px" height="30px"></iframe>-->
|
|
</nav>
|
|
|
|
<redoc scroll-y-offset="body > nav" spec-url='swagger.yaml'></redoc>
|
|
|
|
<script src="main.js"> </script>
|
|
<script src="../dist/redoc.min.js"> </script>
|
|
</body>
|
|
</html>
|