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 37 38 39 40 41 42 43
|
<!DOCTYPE html>
<html lang="en" data-app-name="trame" data-launcher-retry="[]">
<head>
<base href="." />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1"
/>
<meta
name="description"
content="Application built with trame, a product from Kitware"
/>
<meta
name="keywords"
content="trame, OpenSource, Stateful Python Application, Kitware"
/>
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="icon" href="logo.png" />
<title>trame is built by Kitware</title>
<script src="vue.global.js"></script>
</head>
<body>
<noscript>
<strong
>We're sorry but trame built by Kitware doesn't work properly without
JavaScript enabled. Please enable it to continue.</strong
>
</noscript>
<div id="app"></div>
<script>
fetch("./loading.tpl")
.then((r) => r.text())
.then((c) => (document.querySelector("#app").innerHTML = c));
</script>
<script type="module" src="/src/main.js"></script>
</body>
</html>
|