aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/static/index.html.tmpl
blob: d11e9100a96732aa6f19d37371d44a8fd01fb2bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html>
    <head>
        <meta charset="utf-8" />
        <link rel="stylesheet" href="teleterm.css" type="text/css" />
    </head>
    <body>
        <section id="app"></section>
        <script type="text/javascript">
            TELETERM_CONFIG = {{json .}};
        </script>
        <script type="module">
            import init from "./teleterm_web.js";
            init();
        </script>
    </body>
</html>