redoc/demo/index.html

24 lines
511 B
HTML
Raw Normal View History

2015-10-03 11:54:09 +03:00
<!-- index.html -->
<html>
<head>
2015-10-03 12:57:37 +03:00
<title>ReDoc prototype</title>
2015-10-10 15:34:46 +03:00
<link rel="stylesheet" href="main.css">
2015-10-26 22:34:32 +03:00
<link rel="stylesheet" href="dist/redoc.full.css">
2015-10-03 11:54:09 +03:00
</head>
<body>
2015-10-15 20:06:33 +03:00
<side-menu>
</side-menu>
<!-- The wrapper component -->
<redoc>
2015-10-03 11:54:09 +03:00
Loading...
</redoc>
2015-10-03 11:54:09 +03:00
<!-- ReDoc built file with all dependencies included -->
<script src="dist/redoc.full.js"> </script>
<script>
/* init redoc */
2015-10-11 21:32:40 +03:00
Redoc.init('swagger.json');
2015-10-03 11:54:09 +03:00
</script>
</body>
</html>