File size: 1,069 Bytes
2b5f8a7
35757fe
2b5f8a7
 
 
f8e57a3
35757fe
 
 
 
 
 
 
 
 
 
 
 
 
 
2b5f8a7
 
935d690
2b5f8a7
 
 
 
 
 
 
 
35757fe
2b5f8a7
 
 
9b17153
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
36
<!DOCTYPE html>
<html lang="en" style="height: 100%; margin: 0;">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Scholar Copilot</title>
    <style>
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        #gradioIframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
    </style>
    <script>
        document.addEventListener("DOMContentLoaded", function() {
            var gradioURL = "https://fdd1029f29b5704f14.gradio.live/";
            var iframe = document.getElementById("gradioIframe");
            var link = document.getElementById("gradioLink");
            if (iframe) iframe.src = gradioURL;
            if (link) link.href = gradioURL;
        });
    </script>
</head>
<body>
    <iframe id="gradioIframe">
        Your browser does not support iframes. Please click this <a id="gradioLink">url</a>. 
    </iframe>
</body>
</html>