fiber_docs/templates/redoc.html

18 lines
600 B
HTML
Raw Normal View History

2023-04-11 20:43:48 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ .title }} - ReDoc</title>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"></script>
</head>
<body>
<div id="redoc"></div>
<script>
let options = JSON.parse('{{ .redoc_options }}')
Redoc.init('{{ .openapi_url }}', options, document.getElementById('redoc'))
</script>
</body>
</html>