2022-02-01 21:45:55 +08:00
|
|
|
<!DOCTYPE html>
|
2023-07-04 21:33:22 +08:00
|
|
|
<html lang="en" style="
|
2023-02-20 08:14:44 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-07-04 21:33:22 +08:00
|
|
|
">
|
2022-02-01 21:45:55 +08:00
|
|
|
|
2023-07-04 21:33:22 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1" />
|
2022-05-04 05:44:17 +08:00
|
|
|
|
2023-07-04 21:33:22 +08:00
|
|
|
<script type="module" src="./src/main.ts"></script>
|
|
|
|
<meta property="og:url" content="https://gradio.app/" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:image" content="{{ config['thumbnail'] or '' }}" />
|
|
|
|
<meta property="og:title" content="{{ config['title'] or '' }}" />
|
|
|
|
<meta property="og:description" content="{{ config['simple_description'] or '' }}" />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
<meta name="twitter:creator" content="@teamGradio" />
|
|
|
|
<meta name="twitter:title" content="{{ config['title'] or '' }}" />
|
|
|
|
<meta name="twitter:description" content="{{ config['simple_description'] or '' }}" />
|
|
|
|
<meta name="twitter:image" content="{{ config['thumbnail'] or '' }}" />
|
2022-05-04 05:44:17 +08:00
|
|
|
|
2023-07-04 21:33:22 +08:00
|
|
|
<script>
|
|
|
|
window.__gradio_mode__ = "app";
|
|
|
|
</script>
|
2022-05-04 05:44:17 +08:00
|
|
|
|
2023-07-04 21:33:22 +08:00
|
|
|
%gradio_config%
|
2022-02-01 21:45:55 +08:00
|
|
|
|
2023-07-04 21:33:22 +08:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.6/iframeResizer.contentWindow.min.js"
|
|
|
|
async></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body style="
|
2023-02-20 08:14:44 +08:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
2023-07-04 21:33:22 +08:00
|
|
|
">
|
|
|
|
<gradio-app control_page_title="true" embed="false" eager="true"
|
|
|
|
style="display: flex; flex-direction: column; flex-grow: 1">
|
|
|
|
</gradio-app>
|
|
|
|
<script>
|
|
|
|
const ce = document.getElementsByTagName("gradio-app");
|
|
|
|
if (ce[0]) {
|
|
|
|
ce[0].addEventListener("domchange", () => {
|
2022-06-18 11:36:50 +08:00
|
|
|
document.body.style.padding = "0";
|
2023-07-04 21:33:22 +08:00
|
|
|
});
|
|
|
|
document.body.style.padding = "0";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|