aboutsummaryrefslogtreecommitdiff
path: root/ui/src/index.html
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2019-11-29 19:31:34 +0200
committerAlex <alexta69@gmail.com>2019-11-29 19:31:34 +0200
commit511404d23f5edd6ccf79db1fc1b0ba622134db24 (patch)
tree345fe66b840cd6496e1d4a7361a6b309519cad55 /ui/src/index.html
downloadmetube-511404d23f5edd6ccf79db1fc1b0ba622134db24.tar.gz
metube-511404d23f5edd6ccf79db1fc1b0ba622134db24.tar.bz2
metube-511404d23f5edd6ccf79db1fc1b0ba622134db24.zip
initial commit: working version
Diffstat (limited to 'ui/src/index.html')
-rw-r--r--ui/src/index.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/src/index.html b/ui/src/index.html
new file mode 100644
index 0000000..9ae8c8b
--- /dev/null
+++ b/ui/src/index.html
@@ -0,0 +1,13 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>MeTube</title>
+ <base href="/">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="icon" type="image/x-icon" href="favicon.ico">
+</head>
+<body>
+ <app-root></app-root>
+</body>
+</html>
bgstack15