my_gradio / js /app /src /app.html
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified
raw
history blame contribute delete
940 Bytes
<!doctype html>
<html
lang="en"
style="
margin: 0;
padding: 0;
min-height: 100%;
display: flex;
flex-direction: column;
"
>
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script data-gradio-mode>
window.__gradio_mode__ = "app";
window.iFrameResizer = {
heightCalculationMethod: "taggedElement"
};
window.parent?.postMessage(
{ type: "SET_SCROLLING", enabled: false },
"*"
);
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js"
async
></script>
%sveltekit.head%
</head>
<body
data-sveltekit-preload-data="hover"
style="
width: 100%;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
flex-grow: 1;
"
>
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>