aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/static/index.html.tmpl
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-23 04:18:03 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-23 04:18:03 -0500
commit7e198ba7caecfd98cb25118b403f23545716e21b (patch)
tree6e1867b36228d2de43bb23bcc306b04e243e53c6 /teleterm/static/index.html.tmpl
parent989c7f34b30198a87948d37e782f48d771336fa1 (diff)
downloadteleterm-7e198ba7caecfd98cb25118b403f23545716e21b.tar.gz
teleterm-7e198ba7caecfd98cb25118b403f23545716e21b.zip
add basic template rendering ability
Diffstat (limited to 'teleterm/static/index.html.tmpl')
-rw-r--r--teleterm/static/index.html.tmpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/teleterm/static/index.html.tmpl b/teleterm/static/index.html.tmpl
new file mode 100644
index 0000000..c489d87
--- /dev/null
+++ b/teleterm/static/index.html.tmpl
@@ -0,0 +1,14 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href="teleterm.css" type="text/css" />
+ </head>
+ <body>
+ <h1>{{title}}</h1>
+ <section id="app"></section>
+ <script type="module">
+ import init from "./teleterm_web.js";
+ init();
+ </script>
+ </body>
+</html>