25 lines
799 B
HTML
25 lines
799 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"> <!-- Important: rapi-doc uses utf8 charecters -->
|
|
<script type="module" src="https://unpkg.com/rapidoc/dist/rapidoc-min.js"></script>
|
|
<title>API Reference</title>
|
|
</head>
|
|
<body>
|
|
<rapi-doc
|
|
render-style = "read"
|
|
primary-color = "#bc1f2d"
|
|
show-header = "false"
|
|
show-info = "true"
|
|
spec-url = "{% include 'api_url.html' %}/api/api_spec.json"
|
|
default-schema-tab = 'example'
|
|
|
|
>
|
|
|
|
|
|
<div slot="nav-logo" style="display: flex; align-items: center; justify-content: center;">
|
|
<img src = "/static/favicons/android-chrome-256x256.png" style="width:10em; margin: auto;" />
|
|
</div>
|
|
</rapi-doc>
|
|
</body>
|
|
</html> |