-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 959 Bytes
/
index.html
File metadata and controls
27 lines (26 loc) · 959 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Conda-Forge Search</title>
<link rel="stylesheet" href="css/theme.css">
<script src="js/app.min.js"></script>
</head>
<body>
<div id="elm"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm'),
flags: {
//placeholder: "I'm here",
//placeholder: "<div class=\"highlight-python notranslate\"><div class=\"highlight\"><pre><span></span><span class=\"kn\">import</span> <span class=\"nn\">sys</span>\n<span class=\"nb\">print</span><span class=\"p\">(</span><span class=\"n\">sys</span><span class=\"o\">.</span><span class=\"n\">executable</span><span class=\"p\">)</span>\n</pre></div>\n</div>\n",
placeholder: "<b>Yo</b>",
//serverUrl: "http://localhost:5000",
serverUrl: "http://165.227.210.129:80",
presetup: "import sys",
setup: "print(sys.executable)"
}
});
</script>
</body>
</html>