-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
35 lines (34 loc) · 1.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>AmpliPi - REST API</title>
<!-- needed for adaptive design -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700|Open+Sans:300,600|Roboto+Mono" rel="stylesheet">
<!--
ReDoc doesn't change outer page styles
-->
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<!-- Use cached version of ReDoc from: https://unpkg.com/rapidoc/dist/rapidoc-min.js-->
<script type="module" src="web/static/js/libs/rapidoc/9.3.3/rapidoc-min.js"></script>
<rapi-doc spec-url="docs/amplipi_api.yaml" regular-font="Open Sans" mono-font="Roboto Mono" render-style="read" show-header="false" theme="dark" header-color="#47AFE8" primary-color="#47AFE8" allow-try="false" allow-server-selection="false" lazy-rendering="true" no-auto-auth="true">
<!-- NOTE: slot="" is used to put inner html where you want it" -->
<!-- Image -->
<img slot="nav-logo" src="web/static/imgs/amplipi_icon_black.png"
style="width:90%; display: block; margin-left: auto;margin-right: auto; background: #3d3d3d">
<!-- content at the top -->
<!-- content at the bottom -->
<p slot="footer" style="margin:0; padding:16px 36px; background-color:#47AFE8; color:#fff; text-align:center;">
© Micronova 2022
</p>
</rapi-doc>
</body>
</html>